about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDave Rolsky <autarch@urth.org>2021-02-02 23:54:12 -0500
committerCaleb Cartwright <calebcartwright@users.noreply.github.com>2021-02-03 21:05:15 -0600
commitead937b86329d28de699811245a0252593bef7a1 (patch)
tree0a58ad84052932180695e25c2307c013086c1aa0
parentea268b9f559fbafcfc24f4982173b01dfad9e443 (diff)
downloadrust-ead937b86329d28de699811245a0252593bef7a1.tar.gz
rust-ead937b86329d28de699811245a0252593bef7a1.zip
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
-rw-r--r--.github/workflows/upload-assets.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/upload-assets.yml b/.github/workflows/upload-assets.yml
index 238d092b7b1..9a5fd0dd1d3 100644
--- a/.github/workflows/upload-assets.yml
+++ b/.github/workflows/upload-assets.yml
@@ -9,18 +9,18 @@ jobs:
     name: build-release
     strategy:
       matrix:
-        build: [linux, macos, windows-gnu, windows-msvc]
+        build: [linux-x86_64, macos-x86_64, windows-x86_64-gnu, windows-x86_64-msvc]
         include:
-          - build: linux
+          - build: linux-x86_64
             os: ubuntu-latest
             rust: nightly
-          - build: macos
+          - build: macos-x86_64
             os: macos-latest
             rust: nightly
-          - build: windows-gnu
+          - build: windows-x86_64-gnu
             os: windows-latest
             rust: nightly-x86_64-gnu
-          - build: windows-msvc
+          - build: windows-x86_64-msvc
             os: windows-latest
             rust: nightly-x86_64-msvc
     runs-on: ${{ matrix.os }}