-
Notifications
You must be signed in to change notification settings - Fork 11
45 lines (36 loc) · 1.28 KB
/
stable.yaml
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
name: Publish stable
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: 'Checkout' # Download code from the repository
uses: actions/checkout@v2 # Public action
with:
fetch-depth: 0 # Checkout all branches and tags
- name: 'Use NodeJS 16' # Setup node using version 14
uses: actions/setup-node@v2 # Public action
with:
node-version: '16.15.1'
- name: 'Setup lerna@6.6.2'
run: yarn global add lerna@6.6.2 --ignore-engines
- name: Install and link dependencies
run: |
yarn --cwd ./packages/ui-shared install --force --ignore-engines
yarn --cwd ./packages/ui-shared dev:prepare
lerna bootstrap
- name: 'Setup npm'
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Version and publish
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
lerna version patch --force-git-tag --yes
lerna publish from-git --force-git-tag --dist-tag latest --yes --summary-file