Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
D074360 authored Jan 13, 2025
1 parent d6fd6c9 commit a889e49
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,22 @@ jobs:
- name: Create Release Archive
run: git archive --format=zip --output=release.zip HEAD

- name: Create TAR.GZ Archive
run: git archive --format=tar.gz --output=release.tar.gz HEAD

- name: Upload Release Archive
uses: actions/upload-artifact@v4
with:
name: release-archive
path: release.zip
path: |
release.zip
release.tar.gz
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
files: release.zip
files: |
release.zip
release.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}

0 comments on commit a889e49

Please sign in to comment.