Skip to content

Beta testing

Beta testing #27

Workflow file for this run

name: build + publish
on:
push:
branches:
- main-custom
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
PUBLIC_HELLO=world
# Uncomment and replace with your server
#- name: Deploy on CapRover
# uses: caprover/deploy-from-github@v1.1.2
# with:
# server: https://apex.place
# app: 'sveltekit'
# token: '${{ secrets.APP_TOKEN }}'
# image: 'ghcr.io/khromov/self-hosted-sveltekit-demo:main'