Skip to content

Commit

Permalink
fix:publish image workflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
RayWangQvQ committed Feb 12, 2023
1 parent ae1e7f3 commit 54fa6cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
dockerTagWithLatest=""
ghcrTagWithLatest=""
if [ "${{ github.event.inputs.autoWithLatestTag }}" == "true" ] || [ ${{ github.event.release.created_at }} ]; then
dockerTagWithLatest="$dockerImage:latest"
ghcrTagWithLatest="$ghcrImage:latest"
dockerTagWithLatest="${{ env.DOCKER_IMG_NAME }}:latest"
ghcrTagWithLatest="${{ env.GHC_IMG_NAME }}:latest"
fi
echo "dockerTagWithVersion=$dockerTagWithVersion" >> $GITHUB_OUTPUT
echo "ghcrTagWithVersion=$ghcrTagWithVersion" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 54fa6cc

Please sign in to comment.