Skip to content

Commit

Permalink
fix release action version
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Nov 26, 2024
1 parent 1f8c042 commit 2603302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
SRC_TAG=${{ steps.runner.outputs.release }}
echo "Upstream release = indico/indico-containers: ${SRC_TAG}"
if [ "${{ github.event.inputs.version || 'latest' }}" = "latest" ]; then
export TAG="${{ steps.runner.outputs.release }}"
else
export TAG="${SRC_TAG#v}"
else
export TAG="${{ github.event.inputs.version }}"
fi
echo "Generating tag: $TAG"
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 2603302

Please sign in to comment.