summaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2019-10-21 19:49:44 +0300
committerYuval Adam <_@yuv.al>2019-10-21 19:49:44 +0300
commit4914ec328d654148e86e32a80e957c5e350a9a56 (patch)
tree7823b567eb7b57718feb9456cf0d20e11a1b378d /.github/workflows/release.yml
parent08821e02f3a17c777b854817ee857413c2d52bac (diff)
use shasv4
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 0ffed5c..5b2fc26 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -15,15 +15,15 @@ jobs:
include:
- os: macOS-latest
archive: tar
- output: streamlib-${{ github.ref }}-x86_64-apple-darwin.tar.gz
+ output: streamlib-${{ github.sha }}-x86_64-apple-darwin.tar.gz
content_type: 'application/gzip'
- os: windows-latest
archive: zip
- output: streamlib-${{ github.ref }}-x86_64-pc-windows-msvc.zip
+ output: streamlib-${{ github.sha }}-x86_64-pc-windows-msvc.zip
content_type: application/zip
- os: ubuntu-latest
archive: tar
- output: streamlib-${{ github.ref }}-x86_64-unknown-linux-gnu.tar.gz
+ output: streamlib-${{ github.sha }}-x86_64-unknown-linux-gnu.tar.gz
content_type: application/gzip
steps: