Skip to content

Commit

Permalink
0.9.493
Browse files Browse the repository at this point in the history
- Quick Fix
  • Loading branch information
RobbyV2 committed Nov 22, 2024
1 parent 4b2255c commit 097b9cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,9 @@ jobs:
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git tag -a "v${{ github.event.head_commit.message }}" -m "Release v${{ github.event.head_commit.message }}"
git push origin "v${{ github.event.head_commit.message }}"
TAG_NAME=$(git log -1 --pretty=%s | head -n 1)
git tag "$TAG_NAME"
git push origin "$TAG_NAME"
- name: Download Windows Artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 097b9cc

Please sign in to comment.