generated from nginxinc/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.24 KB
/
reference-lib.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
name: Publish reference lib package to NPM
on:
push:
branches: ['main']
paths: ['reference-lib/**']
pull_request:
branches: ['main']
paths: ['reference-lib/**']
defaults:
run:
working-directory: ./reference-lib
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Test it out
run: npm run test
- name: Bundle using rollup
run: npm run build
- name: publish package
if: github.event_name == 'push'
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create and push tag matching the npm package
if: github.event_name == 'push'
run: |
export PACKAGE_VERSION=v$(node -p -e 'require("./package.json").version')
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a "$PACKAGE_VERSION" -m "Release $PACKAGE_VERSION"
git push origin "$PACKAGE_VERSION"