Skip to content

Commit

Permalink
CI: fix zip of tmbasic.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed Nov 11, 2023
1 parent 2c4fc2f commit 60e1e37
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 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 }}
name: runner-${{ matrix.platform }}.gz
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 }}
name: runner-${{ matrix.platform }}.gz
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
name: runners.tar
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
name: runners.tar
path: .

- name: Login to GitHub Container Registry
Expand All @@ -186,7 +186,7 @@ jobs:
pushd bin
if [ "${{ matrix.format }}" = "zip" ]; then
zip -9 tmbasic.zip tmbasic
zip -9 tmbasic.zip tmbasic*
else
tar cvf tmbasic.tar.gz tmbasic
fi
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
- name: Download runners.tar
uses: actions/download-artifact@v3
with:
name: runners
name: runners.tar
path: .

- name: Build
Expand Down Expand Up @@ -269,4 +269,4 @@ jobs:
uses: geekyeggo/delete-artifact@v2
with:
useGlob: false
name: runners
name: runners.tar

0 comments on commit 60e1e37

Please sign in to comment.