Skip to content

Commit 6a36db6

Browse files
committed
Fix GitHub Actions workflow
- Update to softprops/action-gh-release@v2 - Fix files parameter syntax - Remove deprecated parameters
1 parent 9046ff2 commit 6a36db6

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
zip -r IntegrityHelper.zip . -x "*.git*" "*.DS_Store" "*__pycache__*" "*.pyc"
1919
2020
- name: Create Release
21-
uses: softprops/action-gh-release@v1
21+
uses: softprops/action-gh-release@v2
2222
with:
2323
name: Integrity Helper ${{ github.ref_name }}
2424
tag_name: ${{ github.ref_name }}
@@ -43,5 +43,4 @@ jobs:
4343
Use at your own risk. Always backup before installing third-party modules.
4444
draft: false
4545
prerelease: false
46-
files: |
47-
IntegrityHelper.zip
46+
files: IntegrityHelper.zip

0 commit comments

Comments
 (0)