Skip to content

Commit

Permalink
added tagname to generated ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
harry75369 committed Dec 14, 2023
1 parent 0d2744c commit 1ab0b1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-with-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ jobs:
uses: thedoctor0/[email protected]
with:
type: 'tar'
filename: 'github-release/skia-with-deps.tar.gz'
filename: 'github-release/skia-with-deps-${{ github.ref_name }}.tar.gz'
exclusions: 'github-release .git'

- name: Calculate checksum
run: |
echo "MD5 Checksums:" >> CHECKSUMS
md5sum github-release/skia-with-deps.tar.gz >> CHECKSUMS
md5sum github-release/* >> CHECKSUMS
echo >> CHECKSUMS
echo "SHA256 Checksums:" >> CHECKSUMS
sha256sum github-release/skia-with-deps.tar.gz >> CHECKSUMS
sha256sum github-release/* >> CHECKSUMS
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: github-release/skia-with-deps.tar.gz
files: github-release/skia-with-deps-${{ github.ref_name }}.tar.gz
body_path: CHECKSUMS

0 comments on commit 1ab0b1d

Please sign in to comment.