-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (53 loc) · 1.77 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
name: Publish to NPM
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: set global attributes
run: |
git config --global user.email "[email protected]"
git config --global user.name "neicore"
git remote set-url origin https://x-access-token:${{ secrets.TOKEN }}@github.com/${{ github.repository }}
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies and build 🔧
run: npm install && npm run prebuild && npm run build
- name: Publish package on NPM 📦
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# update version
- name: install jq
run: |
sudo apt-get update
sudo apt-get -y install jq
- name: get version
run: |
PACKAGE_VERSION=$(cat ./package.json | jq '.version' | tr -d '"')
echo "::set-output name=PACKAGE_VERSION::$(cat ./package.json | jq '.version' | tr -d '"')"
id: version
- name: bump-version
id: bump_version
uses: flexcodelabs/[email protected]
with:
GITHUB_TOKEN: ${{secrets.TOKEN}}
PACKAGE_VERSION: ${{ steps.version.outputs.PACKAGE_VERSION }}
DELETE_BRANCH: false
CHANGELOG_PATH: ./CHANGELOG.md
PACKAGE_JSON_PATH: ./package.json
# Commit and push the latest version
- name: update main branch
run: |
git add ./package.json
git add ./CHANGELOG.md
git commit -m "Skip CI"
git push