-
-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (53 loc) · 1.87 KB
/
node-release-patch.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
name: Release Patch
on: workflow_dispatch
jobs:
release-patch:
name: Release Patch
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
token: ${{ secrets.RELEASE_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Set patch version
id: patch_version
run: |
PATCH_VERSION=$(npm version --no-git-tag-version --no-commit-hooks patch)
node scripts/update-version.js $PATCH_VERSION
npm install
npm run lint:fix
echo "PATCH_VERSION=$PATCH_VERSION" >> $GITHUB_OUTPUT
- name: Commit, push and create tag
uses: EndBug/add-and-commit@v9
with:
fetch: true
default_author: github_actions
message: Release ${{ steps.patch_version.outputs.PATCH_VERSION }}
pathspec_error_handling: exitImmediately
push: true
tag: ${{ steps.patch_version.outputs.PATCH_VERSION }}
- name: Create release
env:
GH_TOKEN: ${{ github.token }}
run: gh release create ${{ steps.patch_version.outputs.PATCH_VERSION }} --generate-notes
- name: Set next dev version
id: dev_version
run: |
DEV_VERSION=$(npm version --no-git-tag-version --no-commit-hooks --preid SNAPSHOT prerelease)
node scripts/update-version.js $DEV_VERSION
npm install
npm run lint:fix
echo "DEV_VERSION=$DEV_VERSION" >> $GITHUB_OUTPUT
- name: Commit and push
uses: EndBug/add-and-commit@v9
with:
fetch: true
default_author: github_actions
message: Set next dev version to ${{ steps.dev_version.outputs.DEV_VERSION }}
pathspec_error_handling: exitImmediately
push: true