Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 5d482e2

Browse files
committed
Update versions of release workflow and build typescript before doing a release
1 parent 0fc5a50 commit 5d482e2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
name: Release
2+
23
on:
34
push:
45
branches:
56
- master
7+
68
jobs:
79
release:
810
name: Release
9-
runs-on: ubuntu-18.04
11+
runs-on: ubuntu-20.04
1012
steps:
1113
- name: Checkout
1214
uses: actions/checkout@v1
1315
- name: Setup Node.js
1416
uses: actions/setup-node@v1
1517
with:
16-
node-version: 12
18+
node-version: 14
19+
1720
- name: Install dependencies
1821
run: npm ci
22+
- name: Build
23+
run: npm run build
24+
1925
- name: Release
2026
env:
2127
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)