-
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (47 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
name: '📩 Release Please'
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: 🤝 Release Please
uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: mysql2-orm
changelog-path: 'CHANGELOG.md'
- name: ➕ Actions - Checkout
uses: actions/checkout@v3
if: ${{ steps.release.outputs.releases_created }}
- name: ➕ Actions - Setup NodeJS
uses: actions/setup-node@v3
if: ${{ steps.release.outputs.releases_created }}
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: ➕ Cache dependencies
uses: actions/cache@v3
if: ${{ steps.release.outputs.releases_created }}
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: 📦 Installing Dependencies
if: ${{ steps.release.outputs.releases_created }}
run: npm ci
- name: 🚀 Building MySQL2 ORM
if: ${{ steps.release.outputs.releases_created }}
run: npm run build
- name: 📥 Publishing Package
if: ${{ steps.release.outputs.releases_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish