-
Notifications
You must be signed in to change notification settings - Fork 235
45 lines (39 loc) · 1.06 KB
/
publish.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
on:
push:
branches:
- main
paths-ignore:
- .gitignore
- README.md
- '.github/ISSUE_TEMPLATE/**'
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Setup .npmrc
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Set git credentials
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'actions@github.com'
git remote set-url origin "https://${{ secrets.REPO_PAT }}@github.com/AceDataCloud/Nexior"
- name: Publish
run: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}