|
9 | 9 | GCS_BUCKET: mitbattlecode-releases |
10 | 10 |
|
11 | 11 | # CLIENT_ARTIFACT_ID is the name of the base client artifact produced by the buildsystem. |
12 | | - CLIENT_ARTIFACT_ID: battlecode25 |
| 12 | + CLIENT_ARTIFACT_ID: battlecode26 |
13 | 13 |
|
14 | 14 | # IS_PUBLIC is whether to release deployments publicly. Set to exactly the text "YES" to do so. |
15 | 15 | IS_PUBLIC: NO |
@@ -49,29 +49,29 @@ jobs: |
49 | 49 | - name: Checkout branch |
50 | 50 | uses: actions/checkout@v3 |
51 | 51 |
|
52 | | - - name: Set up Node 18 |
| 52 | + - name: Set up Node 22 |
53 | 53 | uses: actions/setup-node@v3 |
54 | 54 | with: |
55 | | - node-version: 18 |
| 55 | + node-version: 22 |
56 | 56 |
|
57 | 57 | # Rust toolchain is preinstalled on runner images, but we need to add the x86 |
58 | 58 | # toolchain on macos to compile universal apps from the M1 runner |
59 | 59 | - name: Install macos dependencies |
60 | 60 | if: startsWith(matrix.platform-name, 'macos') |
61 | 61 | run: | |
62 | 62 | rustup target add x86_64-apple-darwin |
63 | | - npm install @tauri-apps/cli-darwin-arm64@1.6.3 |
| 63 | + npm install @tauri-apps/cli-darwin-arm64@2.9.4 |
64 | 64 |
|
65 | 65 | - name: Install linux dependencies |
66 | 66 | if: startsWith(matrix.platform-name, 'ubuntu') |
67 | 67 | run: | |
68 | 68 | sudo apt-get update |
69 | | - sudo apt-get install -y libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev |
70 | | - npm install @tauri-apps/cli-linux-x64-gnu@1.6.3 |
| 69 | + sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev |
| 70 | + npm install @tauri-apps/cli-linux-x64-gnu@2.9.4 |
71 | 71 |
|
72 | 72 | - name: Install windows dependencies |
73 | 73 | if: startsWith(matrix.platform-name, 'windows') |
74 | | - run: npm install @tauri-apps/cli-win32-x64-msvc@1.6.3 |
| 74 | + run: npm install @tauri-apps/cli-win32-x64-msvc@2.9.4 |
75 | 75 |
|
76 | 76 | - name: Install schema |
77 | 77 | run: npm install |
|
0 commit comments