Skip to content

Commit

Permalink
Merge pull request #71 from near/main
Browse files Browse the repository at this point in the history
Prod deploy
  • Loading branch information
morgsmccauley authored May 23, 2023
2 parents 7d3d9ef + 67aa2c6 commit 7f20b64
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod-widgets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
deploy-account-address: ${{ vars.PROD_SIGNER_ACCOUNT_ID }}
signer-public-key: ${{ vars.PROD_SIGNER_PUBLIC_KEY }}
secrets:
SIGNER_PRIVATE_KEY: ${{ secrets.DEV_SIGNER_PRIVATE_KEY }}
SIGNER_PRIVATE_KEY: ${{ secrets.PROD_SIGNER_PRIVATE_KEY }}
2 changes: 2 additions & 0 deletions registry/contract/deploy-dev.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
near deploy --wasmFile ./target/wasm32-unknown-unknown/release/registry.wasm --accountId dev-queryapi.dataplatform.near
2 changes: 2 additions & 0 deletions registry/contract/deploy-local-testing.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
near deploy --wasmFile ./target/wasm32-unknown-unknown/release/registry.wasm --accountId registry.queryapi.near
2 changes: 2 additions & 0 deletions registry/contract/deploy-prod.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
near deploy --wasmFile ./target/wasm32-unknown-unknown/release/registry.wasm --accountId queryapi.dataplatform.near

0 comments on commit 7f20b64

Please sign in to comment.