forked from pradel/esbuild-node-externals
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1.42 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
35
36
37
38
39
40
41
on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/[email protected]
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: esbuild-node-externals
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"docs","section":"Documentation","hidden":false},{"type":"test","section":"Tests","hidden":false}]'
path: esbuild-node-externals
- uses: actions/checkout@v2
if: ${{ steps.release.outputs.release_created }}
- name: Use Node 12
uses: actions/setup-node@v1
with:
node-version: 12.x
if: ${{ steps.release.outputs.release_created }}
- name: Install dependencies
run: yarn install --immutable
if: ${{ steps.release.outputs.release_created }}
- name: Build esbuild-node-externals
run: yarn workspace esbuild-node-externals build
if: ${{ steps.release.outputs.release_created }}
- name: Publish esbuild-node-externals npm package
run: yarn workspace esbuild-node-externals npm publish
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}