github-actions: Add assemble release workflow

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-01-24 11:02:00 +01:00
parent 52621b9755
commit ee3ee0701f
2 changed files with 97 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
#!/usr/bin/env node
/* eslint-disable import/no-extraneous-dependencies */
/*
* Copyright 2022 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const fs = require('fs-extra');
const { getPackages } = require('@manypkg/get-packages');
const path = require('path');
async function main() {
const [version, outputPath] = process.argv.slice(2);
if (!version || !outputPath) {
throw new Error('Argument must be script.js <version> <outputPath>');
}
const manifestDir = path.resolve(outputPath, version);
if (await fs.pathExists(manifestDir)) {
throw new Error(
`Release manifest path for version ${version} already exists`,
);
}
console.log(`Assembling packages for backstage release ${version}`);
const { packages } = await getPackages(path.resolve('.'));
const versions = packages
.filter(
p =>
(p.packageJson.name.startsWith('@backstage/') ||
p.packageJson.name.startsWith('@techdocs/')) &&
p.packageJson.private === false,
)
.map(p => {
return { name: p.packageJson.name, version: p.packageJson.version };
});
await fs.mkdir(manifestDir);
await fs.writeJSON(
path.resolve(manifestDir, 'manifest.json'),
{ packages: versions },
{ spaces: 2 },
);
}
main().catch(error => {
console.error(error.stack);
process.exit(1);
});