Skip to content

Commit

Permalink
fix: 🐝 Fix an issue where IMAGE was not being properly passed to the …
Browse files Browse the repository at this point in the history
…image creation #minor
  • Loading branch information
JamesIves committed Sep 9, 2024
1 parent 3e3d74c commit de61db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
GAME=${{ env.GAME}}
FLAG=${{ env.FLAG }}
VERSION=${{ needs.version.outputs.version }}
IMAGE: jives/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }}
IMAGE=jives/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }}
- name: Set repo owner to lowercase
id: repo_owner
Expand All @@ -125,7 +125,7 @@ jobs:
GAME=${{ env.GAME }}
FLAG=${{ env.FLAG }}
VERSION=${{ needs.version.outputs.version }}
IMAGE: ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }}
IMAGE=ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }}
publish:
needs: build
Expand Down

0 comments on commit de61db2

Please sign in to comment.