name: Build and Push Quartz env: REGISTRY: "gitea.vorpax.dev" IMAGE_NAME: "vorpax/wiki" on: push: branches: - main workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Login to Gitea Registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ gitea.actor }} password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and Push uses: docker/build-push-action@v5 with: context: . push: true tags: | tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}