-
Notifications
You must be signed in to change notification settings - Fork 30
51 lines (42 loc) · 1.28 KB
/
Copy pathrelease.yml
File metadata and controls
51 lines (42 loc) · 1.28 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Release
on:
push:
branches: ['master']
jobs:
release:
name: Trigger release
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
# Full history + all tags: `auto shipit` needs them to compute the
# version bump and changelog. fetch-depth: 0 yields a non-shallow
# clone, which avoids the "shallow file has changed" fetch race.
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Use node
uses: actions/setup-node@v4
with:
cache: yarn
node-version-file: '.tool-versions'
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Bundle
run: yarn bundle
- name: Lint
run: yarn lint
- name: Create release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_USERCONFIG: ${{ runner.temp }}/npmrc
run: |
: > "$NPM_CONFIG_USERCONFIG"
yarn release