-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (30 loc) · 1.02 KB
/
release-please.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
on:
push:
branches:
- main
name: 🚀 release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: 🕺 release
uses: GoogleCloudPlatform/release-please-action@v2
id: release
with:
release-type: node
changelog-types: '[{"type":"feat","section":"🎉 Features","hidden":false},{"type":"fix","section":"🛠️ Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🚦 checkout
uses: actions/checkout@v2
if: ${{ steps.release.outputs.release_created }}
- name: 🟢 node
uses: actions/setup-node@v2
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- name: 🚀 publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}