diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index bf5d184..9b447f8 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -37,6 +37,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Replace fallback value in Dockerfile and entrypoint.sh + working-directory: ./container run: | sed -i "s/\${GAME:-valve}/\${GAME:-${{ matrix.game }}}/g" Dockerfile sed -i "s/\${GAME:-valve}/\${GAME:-${{ matrix.game }}}/g" entrypoint.sh @@ -46,7 +47,7 @@ jobs: env: GAME: ${{ matrix.game }} with: - context: . + context: ./container push: true tags: jives/hlds:${{ matrix.game }}-beta build-args: GAME=${{ matrix.game }} @@ -60,7 +61,7 @@ jobs: env: GAME: ${{ matrix.game }} with: - context: . + context: ./container push: true tags: ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-beta build-args: GAME=${{ matrix.game }}