aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2022-10-27 21:48:01 +1300
committerChris Packham <judge.packham@gmail.com>2023-02-13 19:36:27 +1300
commitf0ab9bb8519fc4b31fd9b6d68ce1058ae262a4eb (patch)
tree820bd610b945d868bbea8622b4893c575d36d489 /.github
parent190b8392da5f0e51d3a116d14bf3391231c93798 (diff)
downloadcrosstool-ng-f0ab9bb8519fc4b31fd9b6d68ce1058ae262a4eb.tar.gz
crosstool-ng-f0ab9bb8519fc4b31fd9b6d68ce1058ae262a4eb.tar.bz2
crosstool-ng-f0ab9bb8519fc4b31fd9b6d68ce1058ae262a4eb.zip
CI: Use ${{ matrix.sample }} when uploading artifacts
Update some hard coded names to use ${{ matrix.sample }} instead. This will allow us to upload other artifacts in the future. Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-toolchains.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-toolchains.yml b/.github/workflows/build-toolchains.yml
index 8634f83f..09f9864d 100644
--- a/.github/workflows/build-toolchains.yml
+++ b/.github/workflows/build-toolchains.yml
@@ -101,9 +101,9 @@ jobs:
if: ${{ matrix.sample == 'x86_64-w64-mingw32' }}
uses: actions/upload-artifact@v3
with:
- name: x86_64-w64-mingw32.${{ matrix.host }}.tar
+ name: ${{ matrix.sample }}.${{ matrix.host }}.tar
path: |
- x86_64-w64-mingw32.${{ matrix.host }}.tar
+ ${{ matrix.sample }}.${{ matrix.host }}.tar
- name: upload log
uses: actions/upload-artifact@v3
with: