-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (42 loc) · 1.43 KB
/
bump-version-and-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
# NOTE: taken from https://github.com/MylesBorins/node-osc/blob/main/.github/workflows/bump-version.yml
name: Bump version, Tag & Publish
on:
workflow_dispatch:
inputs:
version:
description: 'Semver type of new version (major / minor / patch / prerelease)'
required: true
prereleaseid:
description: 'Prerelease id (rc)'
default: ''
jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: Install npm packages
run: npm ci
- name: Setup Git
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: bump version
run: |
npm version ${{ github.event.inputs.version }} --no-git-tag-version --preid ${{ github.event.inputs.prereleaseid }}
git add .
git commit -m "v$(npm pkg get version | tr -d '"')"
git tag $(npm pkg get version | tr -d '"') -m "v$(npm pkg get version | tr -d '"')"
- name: publish
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push latest version
run: git push origin main --follow-tags