-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (46 loc) · 1.33 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
48
49
50
51
52
53
name: Release to NPM Registry
on:
push:
branches:
- main
- staging
repository_dispatch:
types: [prod-release]
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Build package
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
ENVIRONMENT: ${{ github.ref }}
run: npx semantic-release
- name: Publish
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: npx lerna exec -- npm publish --access public
- name: Update staging branch
if: |
contains('refs/heads/main', github.ref)
run: |
git config --global user.email "[email protected]"
git config --global user.name "dyte-devel"
git pull
git stash
git checkout staging
git merge main
git push --set-upstream origin staging