-
Notifications
You must be signed in to change notification settings - Fork 8
62 lines (53 loc) · 1.7 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
53
54
55
56
57
58
59
60
61
62
# 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'
required: true
type: choice
options:
- major
- minor
- patch
- prerelease
- keep-current
prereleaseid:
description: 'Prerelease id (rc)'
default: ''
jobs:
bump-version:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Check out source
uses: actions/checkout@v3
with:
ssh-key: ${{secrets.DEPLOY_KEY}}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Setup Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: bump version
if: ${{ github.event.inputs.version != 'keep-current' }}
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 --provenance
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push latest version
if: ${{ github.event.inputs.version != 'keep-current' }}
run: git push origin main --follow-tags