-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (61 loc) · 2 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Publish
on:
workflow_dispatch:
inputs:
release_version:
description: "Version of this release"
required: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: Cache 📦
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Node Environment ⬢
uses: actions/setup-node@v1
with:
node-version: 18
- name: Tag release
uses: rickstaa/action-create-tag@v1
with:
tag: ${{ github.event.inputs.release_version }}
message: "Release ${{ github.event.inputs.release_version }}"
- name: Update version in package.json
id: version-bump
uses: jaywcjlove/[email protected]
with:
version: ${{ github.event.inputs.release_version }}
- name: Install 🔧
run: npm install
- name: Conditional
id: cond
uses: haya14busa/action-cond@v1
with:
cond: ${{ contains(github.event.inputs.release_version, '-') }}
if_true: "next"
if_false: "latest"
- name: Publish 📦
id: publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}
tag: ${{ steps.cond.outputs.value }}
access: public
check-version: true
- name: Release
if: steps.publish.outputs.type != 'none'
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.publish.outputs.version }}
generateReleaseNotes: true
prerelease: ${{ contains(steps.publish.outputs.type, 'pre') }}
token: ${{ secrets.GITHUB_TOKEN }}