-
Notifications
You must be signed in to change notification settings - Fork 72
127 lines (107 loc) · 4.35 KB
/
official-release.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# This workflow generates a PR for an official, manually triggered, release
name: Official release
on:
workflow_dispatch: # Manually on demand
inputs:
versionBump:
description: 'Type of version bump'
required: true
default: 'patch'
type: choice
options:
- patch
- minor
- major
jobs:
publish-config:
if: github.repository == 'project-chip/matter.js'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the history, or this action won't work
- name: Prepare testing environment
uses: ./.github/actions/prepare-env
- name: Prepare Webbrowser testing environment
uses: ./.github/actions/prepare-webtests
- name: Execute tests
run: npm run test
- name: Prepare chip tests
uses: ./.github/actions/prepare-chip-testing
- name: chip-tool-test execution
id: test-execution
shell: bash
run: |
cd chip-testing
npm run test-chip
- name: Patch for building docs
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const file = fs.readFileSync('./node_modules/buffer/index.d.ts', 'utf8');
fs.writeFileSync('./node_modules/buffer/index.d.ts', file.replace('concat(list: Buffer[], totalLength?: number): Buffer;', 'concat(...list: Buffer[]): Buffer;'), 'utf8');
- name: Build Docs
run: npm run build-doc
- name: Determine the version bump
id: version
uses: actions/github-script@v7
env:
VERSION_BUMP: ${{ inputs.versionBump }}
with:
result-encoding: string
script: |
const semver = require('semver');
const prevVersion = require(`${process.env.GITHUB_WORKSPACE}/lerna.json`).version;
const parsed = semver.parse(prevVersion);
// Figure out the next version
return `${semver.inc(parsed, process.env.VERSION_BUMP)}`;
- name: Prepare changelog
env:
VERSION: ${{ steps.version.outputs.result }}
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const WIP_MARKER = '__WORK IN PROGRESS__';
const TEMP_PLACEHOLDER = '**TEMP_PLACEHOLDER_GH_ACTION**';
const changelog = fs
.readFileSync(`${process.env.GITHUB_WORKSPACE}/CHANGELOG.md`, 'utf8')
.replace(WIP_MARKER, TEMP_PLACEHOLDER);
if (!changelog.includes(WIP_MARKER)) {
throw new Error(`${WIP_MARKER} is missing in changelog`);
}
const dateStr = new Date().toISOString().split('T')[0];
const versionDateStr = `${process.env.VERSION} (${dateStr})`;
fs.writeFileSync(
`${process.env.GITHUB_WORKSPACE}/CHANGELOG.md`,
changelog.replace(WIP_MARKER, versionDateStr).replace(TEMP_PLACEHOLDER, WIP_MARKER),
'utf8'
);
- name: Bump version locally
env:
VERSION: ${{ steps.version.outputs.result }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Action"
git add .
git commit -m "v${VERSION}" && npx lerna version ${VERSION} --no-push --exact --ignore-scripts --no-commit-hooks --yes --amend --force-publish || npx lerna version ${VERSION} --exact --no-push --ignore-scripts --no-commit-hooks --yes --force-publish
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.PR_TOKEN }}
commit-message: "[OFFICIAL RELEASE] ${{ steps.version.outputs.result }}"
committer: Automator77 <[email protected]>
author: Automator77 <[email protected]>
signoff: false
branch: official-release
delete-branch: true
title: "[OFFICIAL RELEASE] ${{ steps.version.outputs.result }}"
body: |
Update version by release action
labels: |
automated pr
assignees: Automator77
draft: false