-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 877 Bytes
/
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
jobs:
github:
if: github.ref_type == 'tag'
name: Create a release on GitHub
runs-on: ubuntu-latest
steps:
- name: Create a release
uses: kei-g/github/create-release@main
npm:
name: Publish
needs:
- github
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version: latest
registry-url: https://registry.npmjs.org
- name: Upgrade npm
run: npm install npm@latest -g
- name: Setup modules
run: npm ci
- env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Publish
run: npm publish
name: Release
on:
create:
tags:
- 'v[0-9]+(\.[0-9]+)*(\-[0-9A-Za-z]+)*'