Skip to content

Commit 9046ff2

Browse files
committed
Update release workflow to use modern action
- Switch to softprops/action-gh-release for better reliability - Ensure release name includes 'Integrity Helper' prefix - Fix asset attachment syntax
1 parent dca32b3 commit 9046ff2

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ jobs:
1818
zip -r IntegrityHelper.zip . -x "*.git*" "*.DS_Store" "*__pycache__*" "*.pyc"
1919
2020
- name: Create Release
21-
uses: actions/create-release@v1
22-
env:
23-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
uses: softprops/action-gh-release@v1
2422
with:
23+
name: Integrity Helper ${{ github.ref_name }}
2524
tag_name: ${{ github.ref_name }}
26-
release_name: Integrity Helper ${{ github.ref_name }}
2725
body: |
2826
# Integrity Helper ${{ github.ref_name }}
2927
@@ -45,5 +43,5 @@ jobs:
4543
Use at your own risk. Always backup before installing third-party modules.
4644
draft: false
4745
prerelease: false
48-
assets: |
46+
files: |
4947
IntegrityHelper.zip

0 commit comments

Comments
 (0)