-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Release
on:
push:
branches: [ master ]
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
permissions:
checks: read
statuses: write
contents: write
packages: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: master
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: yarn
- name: Create .npmrc
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Release
run: npm_config_yes=true npx zx-bulk-release
env:
VERBOSE: ${{ secrets.VERBOSE }}
GH_USER: ${{ secrets.GH_USER }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}