const os = require('os')
// this script unbundles the published packages output
// from changesets action to a key-value pair to be used
// with our publishing CI workflow
data = process.argv[2]
data = JSON.parse(data)
for (const i of data) {
const name = i.name.replace("@eth-optimism/", "")
const version = i.version
process.stdout.write(`::set-output name=${name}::${version}` + os.EOL)
}
-
Mark Tyneway authored
Bring back `ci-builder` to the monorepo as it should have never been deleted. Also bring back various tagging scripts. It is not clear which tagging script is used at the moment, need clarity on which should be actually brought back before merging this. `ci-versions.js` is required for changesets, so bring that back for sure. `update-op-geth.py` is used but unclear about the 2 other shell scripts.
03f5b550