Skip to content

Commit 93ebbee

Browse files
authored
chore: install deno on release pipelines as well (#130)
1 parent 1edab48 commit 93ebbee

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/pre-release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
registry-url: 'https://registry.npmjs.org'
2121
- name: Install core dependencies
2222
run: npm ci --no-audit
23+
- name: Install Deno
24+
uses: denoland/setup-deno@v1
25+
with:
26+
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/edge-bundler/blob/e55f825bd985d3c92e21d1b765d71e70d5628fba/node/bridge.ts#L17
27+
deno-version: v1.37.0
2328
- name: Extract tag and version
2429
id: extract
2530
run: |-

.github/workflows/release-please.yml

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
- name: Install dependencies
3131
run: CI=1 npm ci
3232
if: ${{ steps.release.outputs.release_created }}
33+
- name: Install Deno
34+
uses: denoland/setup-deno@v1
35+
with:
36+
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/edge-bundler/blob/e55f825bd985d3c92e21d1b765d71e70d5628fba/node/bridge.ts#L17
37+
deno-version: v1.37.0
3338
- name: Build
3439
run: npm run build
3540
if: ${{ steps.release.outputs.release_created }}

0 commit comments

Comments
 (0)