Skip to content

Commit 69c7dac

Browse files
authored
Fix publish workflow to match build one
1 parent c905030 commit 69c7dac

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,19 @@ jobs:
2828

2929
- name: ⏬ download
3030
run: |
31-
mkdir obj && pushd obj
32-
mkdir win-x64; mkdir win-x86; mkdir linux-x64; mkdir linux-x86; mkdir osx-x64; mkdir osx-arm64
33-
popd;
31+
mkdir obj
3432
35-
curl https://download-chromium.appspot.com/dl/Win_x64?type=snapshots -L -o obj/win-x64/native.zip
36-
unzip obj/win-x64/native.zip -d src/chromium.win-x64
33+
curl https://download-chromium.appspot.com/dl/Win_x64?type=snapshots -L -o obj/win-x64.zip
34+
unzip obj/win-x64.zip -d src/chromium.win-x64
3735
38-
curl https://download-chromium.appspot.com/dl/Win?type=snapshots -L -o obj/win-x86/native.zip
39-
unzip obj/win-x86/native.zip -d src/chromium.win-x86
36+
curl https://download-chromium.appspot.com/dl/Win?type=snapshots -L -o obj/win-x86.zip
37+
unzip obj/win-x86.zip -d src/chromium.win-x86
4038
41-
curl https://download-chromium.appspot.com/dl/Linux_x64?type=snapshots -L -o obj/linux-x64/native.zip
42-
unzip obj/linux-x64/native.zip -d src/chromium.linux-x64
39+
curl https://download-chromium.appspot.com/dl/Linux_x64?type=snapshots -L -o obj/linux-x64.zip
40+
unzip obj/linux-x64.zip -d src/chromium.linux-x64
4341
44-
curl https://download-chromium.appspot.com/dl/Linux?type=snapshots -L -o obj/linux-x86/native.zip
45-
unzip obj/linux-x86/native.zip -d src/chromium.linux-x86
42+
curl https://download-chromium.appspot.com/dl/Linux?type=snapshots -L -o obj/linux-x86.zip
43+
unzip obj/linux-x86.zip -d src/chromium.linux-x86
4644
4745
- name: 🙏 build
4846
run: dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v}

0 commit comments

Comments
 (0)