-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (32 loc) · 1021 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Release
on:
push:
branches:
- main
- beta
jobs:
release:
timeout-minutes: 15
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- run: pnpm run build
- uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
running-workflow-name: wait-for-check-regexp
check-regexp: lint|test|commit-check|type-check
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
- run: pnpm exec semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}