-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbcce9b
commit f0ab353
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,21 +146,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
steps: | ||
- name: Download all artifacts | ||
uses: actions/download-artifact@v4 | ||
- name: Download Artifacts | ||
uses: robinraju/[email protected] | ||
with: | ||
path: artifacts | ||
- name: Generate checksums file | ||
tag: ${{ github.ref_name }} | ||
fileName: "h*" | ||
- name: Generate checksum | ||
uses: jmgilman/actions-generate-checksum@v1 | ||
with: | ||
patterns: h* | ||
method: sha256 | ||
patterns: | | ||
*.zip | ||
*.tar.gz | ||
*.dmg | ||
output: checksums.txt | ||
- name: Publish checksums file | ||
uses: softprops/action-gh-release@v1 | ||
output: checksums.sha256.txt | ||
- name: Publish checksums | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
files: | | ||
checksums.txt | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: checksums.sha256.txt | ||
tag: ${{ github.ref }} | ||
overwrite: true |