Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
$env:version = $(node -p "require('./package.json').version")
npm run pkg -- `
--output=builds\polykey-cli-$env:version-win32-x64 `
--bin=dist\polykey.js `
--bin=dist\polykey.cjs `
--node-version=20 `
--platform=win32 `
--arch=x64
Expand All @@ -232,7 +232,7 @@ jobs:
npm ci
npm run pkg -- \
--output=builds/polykey-cli-$version-darwin-universal \
--bin=dist/polykey.js \
--bin=dist/polykey.cjs \
--node-version=20 \
--platform=darwin \
--arch=arm64
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
'
echo 'Waiting for Testnet Deployment'
nix develop .#ci --command bash -c $'
./scripts/wait-for-deploy.js testnet.polykey.com
./scripts/wait-for-deploy.mjs testnet.polykey.com
'

integration-test:
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
'
echo 'Waiting for Mainnet Deployment'
nix develop .#ci --command bash -c $'
./scripts/wait-for-deploy.js mainnet.polykey.com
./scripts/wait-for-deploy.mjs mainnet.polykey.com
'
rm -f "$REGISTRY_AUTH_FILE"

Expand Down
2 changes: 1 addition & 1 deletion npmDepsHash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sha256-IIPcSnQ9Fo9TUBxxEsnabV0BlFgSU3l9KjXhjoTe1fo=
sha256-xRnHEVwU598REmAsVcghe44lzfJLQPkoXlTeHbt9WLM=
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polykey-cli",
"version": "0.18.8",
"version": "0.18.9",
"homepage": "https://polykey.com",
"author": "Roger Qiu",
"contributors": [
Expand Down
Loading