mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
ci: use a known good version of deno instead of latest in publish scripts (#15037)
This commit is contained in:
parent
4e7abf4986
commit
d7feddfca0
2 changed files with 6 additions and 2 deletions
4
.github/workflows/cargo_publish.yml
vendored
4
.github/workflows/cargo_publish.yml
vendored
|
@ -30,7 +30,9 @@ jobs:
|
||||||
- name: Install deno
|
- name: Install deno
|
||||||
uses: denoland/setup-deno@v1
|
uses: denoland/setup-deno@v1
|
||||||
with:
|
with:
|
||||||
deno-version: v1.x
|
# use a recent version instead of the latest version in case
|
||||||
|
# the latest version ever has issues that breaks publishing
|
||||||
|
deno-version: v1.23.2
|
||||||
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
env:
|
env:
|
||||||
|
|
4
.github/workflows/version_bump.yml
vendored
4
.github/workflows/version_bump.yml
vendored
|
@ -41,7 +41,9 @@ jobs:
|
||||||
- name: Install deno
|
- name: Install deno
|
||||||
uses: denoland/setup-deno@v1
|
uses: denoland/setup-deno@v1
|
||||||
with:
|
with:
|
||||||
deno-version: v1.x
|
# use a recent version instead of the latest version in case
|
||||||
|
# the latest version ever has issues that breaks publishing
|
||||||
|
deno-version: v1.23.2
|
||||||
|
|
||||||
- name: Run version bump
|
- name: Run version bump
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue