mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
ci: bump Deno version (#9449)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
a195c75033
commit
47b3e4bada
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
# stay mostly up-to-date in situations where a single job fails due to
|
||||
# e.g. a flaky test.
|
||||
# Don't fast-fail on tag build because publishing binaries shouldn't be
|
||||
# prevented if 'cargo publish' fails (which can be a false negative).
|
||||
# prevented if if any of the stages fails (which can be a false negative).
|
||||
fail-fast: ${{ github.event_name == 'pull_request' || (github.ref !=
|
||||
'refs/heads/master' && !startsWith(github.ref, 'refs/tags/')) }}
|
||||
|
||||
|
@ -77,13 +77,13 @@ jobs:
|
|||
if: |
|
||||
!startsWith(matrix.os, 'windows')
|
||||
run: |-
|
||||
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.5.1
|
||||
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
|
||||
echo "$HOME/.deno/bin" >> $GITHUB_PATH
|
||||
|
||||
- name: Install Deno (Windows)
|
||||
if: startsWith(matrix.os, 'windows')
|
||||
run: |-
|
||||
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.5.1
|
||||
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
|
||||
echo "$HOME/.deno/bin" >> $env:GITHUB_PATH
|
||||
|
||||
- name: Install Python
|
||||
|
|
Loading…
Reference in a new issue