Skip to content

Commit

Permalink
added deploy workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Jikugodwill committed Aug 30, 2024
1 parent 023402c commit c0201fe
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release-mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Deploy Components to Mainnet
on:
push:
branches: [main]
jobs:
deploy-mainnet:
uses: NEARBuilders/bos-workspace/.github/workflows/deploy.yml@main
with:
bw-legacy: false
deploy-env: "mainnet"
app-name: "bos-blackdragon-marketplace"
deploy-account-address: blackdragon.near
signer-account-address: blackdragon.near
signer-public-key: ${{ vars.BOS_BLACKDRAGON_MARKETPLACE_PUBLIC_KEY }}
secrets:
SIGNER_PRIVATE_KEY: ${{ secrets.BOS_BLACKDRAGON_MARKETPLACE_SIGNER_KEY }}
16 changes: 16 additions & 0 deletions .github/workflows/release-testnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Deploy Components to Testnet
on:
push:
branches: [develop]
jobs:
deploy-mainnet:
uses: NEARBuilders/bos-workspace/.github/workflows/deploy.yml@main
with:
bw-legacy: false
deploy-env: "testnet"
app-name: "bos-blackdragon-marketplace"
deploy-account-address: blackdragon.testnet
signer-account-address: blackdragon.testnet
signer-public-key: ${{ vars.TESTNET_BLACKDRAGON_MARKETPLACE_PUBLIC_KEY }}
secrets:
SIGNER_PRIVATE_KEY: ${{ secrets.TESTNET_BLACKDRAGON_MARKETPLACE_SIGNER_KEY }}

0 comments on commit c0201fe

Please sign in to comment.