Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-fleming committed Jan 8, 2025
1 parent d6c11d2 commit 329dc50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Get all tags for the repo and find the latest tag for the branch being built
git fetch --tags --force --quiet
# tag=$(git tag -l $GITHUB_REF_NAME* | tail -1 | cut -d "-" -f2-)
build_num=$(git tag -l $BRANCH_NAME* | tail -1 | cut -d "-" -f2-)
build_num=$(git tag -l $BRANCH_NAME* | tail -1 | cut -d "." -f2-)
echo "BUILD_NUM = $build_num"
((build_num++))
echo "IMAGE_TAG=$GITHUB_REF_NAME.$build_num" >> $GITHUB_ENV
Expand Down

0 comments on commit 329dc50

Please sign in to comment.