Skip to content

Commit

Permalink
fix: Remove the 'v' in front the tag (temporary solution the time rel…
Browse files Browse the repository at this point in the history
…ease-please works as expected)
  • Loading branch information
qgerome committed Sep 5, 2024
1 parent 055d28f commit 98ccbb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Store version number (on release)
id: version
if: ${{ github.event_name == 'release' }}
# GITHUB_REF looks like "refs/tags/0.3.1" - we need to extract the actual version without the v prefix
run: echo "number=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
# GITHUB_REF looks like "refs/tags/v0.3.1" - we need to extract the actual version without the v prefix
run: echo "number=${GITHUB_REF##*/}" | sed 's/^v//' >> $GITHUB_OUTPUT

# Build all images
- name: Build and push "base" image
Expand Down

0 comments on commit 98ccbb7

Please sign in to comment.