From 020ab7d8744a4b526994d3c4c1e026a7ad3057f9 Mon Sep 17 00:00:00 2001 From: Moritz Ruth Date: Fri, 28 Feb 2025 23:03:46 +0100 Subject: [PATCH] Fix build workflow --- .forgejo/workflows/build.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 3e57f21..67ace8b 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -23,12 +23,13 @@ jobs: - name: "Login to the container registry" uses: "https://code.forgejo.org/docker/login-action@v3" with: - registry: git.moritzruth.de - username: ${{ github.actor }} - password: ${{ github.token }} + registry: "git.moritzruth.de" + username: "${{ github.actor }}" + password: "${{ github.token }}" - name: "Build and push the container image" uses: "https://code.forgejo.org/docker/build-push-action@v6" with: + context: "." push: true tags: "git.moritzruth.de/moritzruth/sscdc:${{ github.ref_name }}"