We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c21e492 commit 8b4abbeCopy full SHA for 8b4abbe
1 file changed
.github/workflows/create_release.yml
@@ -66,7 +66,8 @@ jobs:
66
- name: archive
67
id: archive
68
run: |
69
- OSNAME=$(echo ${{ matrix.os }} | sed 's/-latest//')
+ # Ignore all but the first component of the os name
70
+ OSNAME=$(echo ${{ matrix.os }} | sed 's/-.*//')
71
VERSION=$GITHUB_REF_NAME
72
PKGNAME="binaryen-$VERSION-x86_64-$OSNAME"
73
TARBALL=$PKGNAME.tar.gz
@@ -83,7 +84,8 @@ jobs:
83
84
- name: archive-arm64
85
id: archive-arm64
86
- OSNAME=$(echo ${{ matrix.os }} | sed 's/-11-arm//' | sed 's/-14//')
87
88
89
90
PKGNAME="binaryen-$VERSION-arm64-$OSNAME"
91
0 commit comments