|
62 | 62 | # we specify bash to get pipefail; it guards against the `curl` command
|
63 | 63 | # failing. otherwise `sh` won't catch that `curl` returned non-0
|
64 | 64 | shell: bash
|
65 |
| - run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.13.2/cargo-dist-installer.sh | sh" |
| 65 | + run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.14.1/cargo-dist-installer.sh | sh" |
66 | 66 | # sure would be cool if github gave us proper conditionals...
|
67 | 67 | # so here's a doubly-nested ternary-via-truthiness to try to provide the best possible
|
68 | 68 | # functionality based on whether this is a pull_request, and whether it's from a fork.
|
@@ -105,6 +105,9 @@ jobs:
|
105 | 105 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
106 | 106 | BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
|
107 | 107 | steps:
|
| 108 | + - name: enable windows longpaths |
| 109 | + run: | |
| 110 | + git config --global core.longpaths true |
108 | 111 | - uses: actions/checkout@v4
|
109 | 112 | with:
|
110 | 113 | submodules: recursive
|
@@ -164,7 +167,7 @@ jobs:
|
164 | 167 | submodules: recursive
|
165 | 168 | - name: Install cargo-dist
|
166 | 169 | shell: bash
|
167 |
| - run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.13.2/cargo-dist-installer.sh | sh" |
| 170 | + run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.14.1/cargo-dist-installer.sh | sh" |
168 | 171 | # Get all the local artifacts for the global tasks to use (for e.g. checksums)
|
169 | 172 | - name: Fetch local artifacts
|
170 | 173 | uses: actions/download-artifact@v4
|
@@ -209,7 +212,7 @@ jobs:
|
209 | 212 | with:
|
210 | 213 | submodules: recursive
|
211 | 214 | - name: Install cargo-dist
|
212 |
| - run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.13.2/cargo-dist-installer.sh | sh" |
| 215 | + run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.14.1/cargo-dist-installer.sh | sh" |
213 | 216 | # Fetch artifacts from scratch-storage
|
214 | 217 | - name: Fetch artifacts
|
215 | 218 | uses: actions/download-artifact@v4
|
|
0 commit comments