Skip to content

Commit

Permalink
chore: make are RCs just wildcard the rc tag
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Jan 25, 2024
1 parent c79c942 commit 9b958bc
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
export node_version="$(cargo get workspace.package.version)-rc.$(date +%s)"
cp homestar-runtime/README.md homestar-runtime/npm/base
cd homestar-runtime/npm
envsubst < package-json-base.tmpl > "base/package.json"
envsubst < package-json-baserc.tmpl > "base/package.json"
cd base
npm publish --access public --tag rc
env:
Expand Down
38 changes: 38 additions & 0 deletions homestar-runtime/npm/package-json-baserc.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "homestar-runtime",
"version": "${node_version}",
"description": "The IPVM reference implementation",
"author": "Hugo Dias <[email protected]> (hugodias.me)",
"homepage": "https://github.com/ipvm-wg/homestar/tree/main/homestar-runtime",
"repository": {
"url": "ipvm-wg/homestar",
"directory": "homestar-runtime"
},
"keywords": [
"homestar",
"wasm",
"wit",
"webassembly",
"workflows",
"scheduling"
],
"bin": {
"homestar": "index.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "Apache-2.0",
"optionalDependencies": {
"homestar-darwin-arm64": "rc",
"homestar-darwin-x64": "rc",
"homestar-linux-arm64": "rc",
"homestar-linux-x64": "rc",
"homestar-windows-arm64": "rc",
"homestar-windows-x64": "rc"
},
"dependencies": {
"execa": "^8.0.1"
}
}

0 comments on commit 9b958bc

Please sign in to comment.