Skip to content

Commit 3b473ad

Browse files
committed
Fix replayer names in release workflow
1 parent 42a5f51 commit 3b473ad

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11+
# Keep arch names in sync with replayer download and merge
1112
os: [ubuntu-latest, macos-10.15, windows-2019]
1213
include:
1314
- os: ubuntu-latest
@@ -58,8 +59,8 @@ jobs:
5859
- name: Download macOS jar
5960
uses: actions/download-artifact@v2
6061
with:
61-
name: replayer_darwin
62-
path: replayer_darwin
62+
name: replayer_macos-x86_64
63+
path: replayer_macos-x86_64
6364

6465
- name: Download Linux jar
6566
uses: actions/download-artifact@v2
@@ -76,7 +77,7 @@ jobs:
7677
- name: Merge jars
7778
run: |
7879
mkdir merged
79-
unzip -o replayer_darwin/replayer.jar -d merged
80+
unzip -o replayer_macos-x86_64/replayer.jar -d merged
8081
unzip -o replayer_linux/replayer.jar -d merged
8182
unzip -o replayer_windows/replayer.jar -d merged
8283
jar cvmf merged/META-INF/MANIFEST.MF replayer.jar -C merged .

0 commit comments

Comments
 (0)