Skip to content

Commit

Permalink
fix: attempt on fixing the versioning issue
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed Oct 25, 2024
1 parent 5903de2 commit 8463eef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ jobs:
id: set_version
run: |
if [[ "${{ github.head_ref }}" == "master" ]]; then
echo "V_FORMAT='${major}.${minor}.${patch}'" >> $GITHUB_OUTPUT
echo "V_FORMAT=${major}.${minor}.${patch}" >> $GITHUB_ENV
elif [[ "${{ github.head_ref }}" == "dev" ]]; then
echo "V_FORMAT='${major}.${minor}.${patch}-rc${increment}'" >> $GITHUB_OUTPUT
echo "V_FORMAT=${major}.${minor}.${patch}-rc${increment}" >> $GITHUB_ENV
fi
- name: Git Version
Expand Down

0 comments on commit 8463eef

Please sign in to comment.