Skip to content

Commit

Permalink
ci: fix workflow docker
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Jan 31, 2025
1 parent c33d08a commit 4e4ab80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
id: vars
run: |
if [[ "${{ inputs.release-tag }}" == "" ]]; then
TAG=${{ inputs.release-tag }}
TAG=${GITHUB_REF#refs/*/}
echo "tag=${TAG}" >> $GITHUB_OUTPUT
else
TAG=${GITHUB_REF#refs/*/}
TAG="${{ inputs.release-tag }}"
echo "tag=${TAG}" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit 4e4ab80

Please sign in to comment.