Skip to content

Commit

Permalink
fix: Escape spaces in tag description
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Jul 29, 2024
1 parent 8d2226c commit 43b5022
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
id: create_new_tag
run: |
NEW_TAG=${{ env.NEW_TAG }}
DESCRIPTION=${{ github.event.inputs.description }}
git tag -a $NEW_TAG -m "$DESCRIPTION"
DESCRIPTION="${{ github.event.inputs.description }}"
git tag -a "$NEW_TAG" -m "$DESCRIPTION"
- name: 🚀 Push New Tag
run: |
Expand All @@ -70,6 +70,6 @@ jobs:
else
TOKEN=${{ secrets.GITHUB_TOKEN }}
fi
git push https://[email protected]/${{ github.repository }} $NEW_TAG
git push https://[email protected]/${{ github.repository }} "$NEW_TAG"
env:
NEW_TAG: ${{ env.NEW_TAG }}

0 comments on commit 43b5022

Please sign in to comment.