File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed
Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments