We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45b7066 + 34c63c3 commit 14aefdcCopy full SHA for 14aefdc
1 file changed
.github/actions/build-setup/action.yml
@@ -20,19 +20,14 @@ runs:
20
rustup -V
21
rustc -Vv
22
cargo -V
23
- - name: Install latest Cranko (Ubuntu)
24
- if: ${{ runner.os == 'Linux' }}
+ - name: Install latest Cranko (Ubuntu/macOS)
+ if: ${{ runner.os != 'Windows' }}
25
shell: bash
26
run: |
27
d="$(mktemp -d /tmp/cranko.XXXXXX)"
28
cd "$d"
29
curl --proto '=https' --tlsv1.2 -sSf https://pkgw.github.io/cranko/fetch-latest.sh | sh
30
echo "PATH=$d:$PATH" >> "$GITHUB_ENV"
31
- - name: Install latest Cranko (macOS)
32
- if: ${{ runner.os == 'macOS' }}
33
- shell: bash
34
- run: |
35
- cargo install cranko --force
36
- name: Install latest Cranko (Windows)
37
if: ${{ runner.os == 'Windows' }}
38
shell: pwsh
0 commit comments