-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 947 Bytes
/
deploy.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
name: RCN Registry
on:
push:
branches:
- main
jobs:
publish-gpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
scope: "@surelle-ha"
- run: npm install
- run: npm run build
- name: Commit changes if needed
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
if [[ $(git status --porcelain) ]]; then
git add .
git commit -m "Build artifacts generated"
fi
- run: npx lerna publish from-package --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.GH_PAT }}