Skip to content

Commit

Permalink
CI: fix artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed Nov 11, 2023
1 parent 9be2425 commit 2e503c1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/tmbasic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Upload runner.gz
uses: actions/upload-artifact@v3
with:
name: runner-${{ matrix.platform }}.gz
name: runner-${{ matrix.platform }}
path: runner-${{ matrix.platform }}.gz

build-runner-mac:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Upload runner.gz
uses: actions/upload-artifact@v3
with:
name: runner-${{ matrix.platform }}.gz
name: runner-${{ matrix.platform }}
path: runner-${{ matrix.platform }}.gz

gather-runners:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Upload runners.tar
uses: actions/upload-artifact@v3
with:
name: runners.tar
name: runners
path: runners.tar

- name: Delete runner-*.gz
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
- name: Download runners.tar
uses: actions/download-artifact@v3
with:
name: runners.tar
name: runners
path: .

- name: Login to GitHub Container Registry
Expand Down Expand Up @@ -196,14 +196,14 @@ jobs:
if: matrix.format == 'zip'
uses: actions/upload-artifact@v3
with:
name: tmbasic-${{ matrix.platform }}.zip
name: tmbasic-${{ matrix.platform }}
path: bin/tmbasic.zip

- name: Upload tmbasic.tar.gz
if: matrix.format == 'tar.gz'
uses: actions/upload-artifact@v3
with:
name: tmbasic-${{ matrix.platform }}.tar.gz
name: tmbasic-${{ matrix.platform }}
path: bin/tmbasic.tar.gz

build-tmbasic-mac:
Expand All @@ -223,7 +223,7 @@ jobs:
- name: Download runners.tar
uses: actions/download-artifact@v3
with:
name: runners.tar
name: runners
path: .

- name: Build
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
- name: Upload tmbasic.zip
uses: actions/upload-artifact@v3
with:
name: tmbasic-${{ matrix.platform }}.zip
name: tmbasic-${{ matrix.platform }}
path: bin/tmbasic.zip

final-cleanup:
Expand All @@ -269,4 +269,4 @@ jobs:
uses: geekyeggo/delete-artifact@v2
with:
useGlob: false
name: runners.tar
name: runners

0 comments on commit 2e503c1

Please sign in to comment.