Skip to content

Commit

Permalink
fix: added escape for variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD committed Oct 25, 2024
1 parent 378d1d6 commit b7df0bf
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: version_format
run: |
if [[ ${{ github.head_ref }} == 'master' ]]; then
echo "version_format=${major}.${minor}.${patch}" >> $GITHUB_OUTPUT
echo "version_format=\${major}.\${minor}.\${patch}" >> $GITHUB_OUTPUT
else
echo "version_format=${major}.${minor}.${patch}rc${increment}" >> $GITHUB_OUTPUT
echo "version_format=\${major}.\${minor}.\${patch}rc\${increment}" >> $GITHUB_OUTPUT
fi
- name: print version format
Expand Down

0 comments on commit b7df0bf

Please sign in to comment.