-
Notifications
You must be signed in to change notification settings - Fork 29
62 lines (49 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
name: Create GitHub release and publish to NPM
on:
push:
branches:
- 'main'
permissions:
contents: write
pull-requests: write
jobs:
release-please:
name: 📦 Create GitHub release and publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: ⚙️ Setup Node.js v16
uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
scope: '@erc725'
cache: 'npm'
- name: 🧰 Install
run: npm ci
- name: 💅 Lint
run: npm run lint
- name: 🎯 Test
run: npm test
- name: 🛠 Build
run: npm run build
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: '@erc725/erc725.js'
bump-minor-pre-major: true
default-branch: main
- name: 🔍 Check if version changed
uses: EndBug/version-check@v1
if: github.event_name == 'push'
id: check
- name: 🔄 Check if should release
run: echo "SHOULD_RELEASE=${{ steps.check.outputs.changed == 'true' }}" >> $GITHUB_ENV
- name: 📦 Publish to NPM
if: env.SHOULD_RELEASE == 'true'
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}