build: migrate Windows release builds to GHA (#45137)
* build: migrate release builds to GHA * build: alter CI jobs release script
This commit is contained in:
parent
db7ef90159
commit
aafb1ba72c
7 changed files with 93 additions and 935 deletions
|
@ -2,7 +2,7 @@ import { parseArgs } from 'node:util';
|
|||
|
||||
import { runReleaseCIJobs } from '../run-release-ci-jobs';
|
||||
|
||||
const { values: { ghRelease, job, arch, ci, commit, newVersion }, positionals } = parseArgs({
|
||||
const { values: { ghRelease, job, arch, ci, newVersion }, positionals } = parseArgs({
|
||||
options: {
|
||||
ghRelease: {
|
||||
type: 'boolean'
|
||||
|
@ -16,9 +16,6 @@ const { values: { ghRelease, job, arch, ci, commit, newVersion }, positionals }
|
|||
ci: {
|
||||
type: 'string'
|
||||
},
|
||||
commit: {
|
||||
type: 'string'
|
||||
},
|
||||
newVersion: {
|
||||
type: 'string'
|
||||
}
|
||||
|
@ -44,10 +41,9 @@ if (ci === 'GitHubActions' || !ci) {
|
|||
}
|
||||
|
||||
runReleaseCIJobs(targetBranch, {
|
||||
ci: ci as 'GitHubActions' | 'AppVeyor',
|
||||
ci: ci as 'GitHubActions',
|
||||
ghRelease,
|
||||
job: job as any,
|
||||
arch,
|
||||
newVersion: newVersion!,
|
||||
commit
|
||||
newVersion: newVersion!
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue