-
-
Notifications
You must be signed in to change notification settings - Fork 4
72 lines (61 loc) · 1.86 KB
/
publish.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: publish
on:
# push:
# branches:
# - master
workflow_dispatch:
inputs:
dry-run:
description: Dry run
type: boolean
lerna-options:
description: Lerna publish options
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version-file: .nvmrc
registry-url: 'https://registry.npmjs.org'
- name: Configure Git user
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Install dependencies
run: npm ci --prefer-offline
- name: Lint commit message
run: npx commitlint --from=HEAD~1
- name: Build packages
run: npm run build
- name: Lint packages
run: npm run lint
- name: Test packages
run: npm test
- name: Publish (dry run)
if: |
github.ref_name == 'master'
&& github.event.inputs.dry-run == 'true'
run: npx lerna version --no-git-tag-version --no-push --yes --loglevel=verbose
- name: Publish canary
if: |
github.ref_name != 'master'
&& github.event.inputs.dry-run != 'true'
run: npx lerna publish --canary --no-verify-access
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish
if: |
github.ref_name == 'master'
&& github.event.inputs.dry-run != 'true'
run: npx lerna publish --no-verify-access
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}