-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (55 loc) · 1.63 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
name: Bump version & Publish
on:
workflow_dispatch:
inputs:
version:
description: 'Semver type of new version'
required: true
type: choice
options:
- major
- minor
- patch
- prerelease
prereleaseid:
description: 'Prerelease id (rc)'
required: false
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@v2
with:
node-version: '22.x'
cache: 'npm'
- name: Install npm packages
run: npm ci
- name: Setup Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Publish
if: ${{ !github.event.inputs.prereleaseid }}
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
NPM_CONFIG_PROVENANCE=true lerna publish ${{ github.event.inputs.version }} --y
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish
if: ${{ github.event.inputs.prereleaseid }}
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
lerna publish ${{ github.event.inputs.version }} --preid ${{ github.event.inputs.prereleaseid }} --y
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push latest version
run: git push origin main --follow-tags