Skip to content

Commit 21130bc

Browse files
authored
Add arch name to archive files created in the upload workflow (#4679)
* Add arch name to archive files created in the upload workflow * Fix arch names in matrix.build key to include arch name as well
1 parent 7222213 commit 21130bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/upload-assets.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
name: build-release
1010
strategy:
1111
matrix:
12-
build: [linux, macos, windows-gnu, windows-msvc]
12+
build: [linux-x86_64, macos-x86_64, windows-x86_64-gnu, windows-x86_64-msvc]
1313
include:
14-
- build: linux
14+
- build: linux-x86_64
1515
os: ubuntu-latest
1616
rust: nightly
17-
- build: macos
17+
- build: macos-x86_64
1818
os: macos-latest
1919
rust: nightly
20-
- build: windows-gnu
20+
- build: windows-x86_64-gnu
2121
os: windows-latest
2222
rust: nightly-x86_64-gnu
23-
- build: windows-msvc
23+
- build: windows-x86_64-msvc
2424
os: windows-latest
2525
rust: nightly-x86_64-msvc
2626
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)