-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove target from dockerignore
- Loading branch information
Showing
7 changed files
with
69 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,3 @@ packages | |
contracts | ||
aws | ||
skip_examples | ||
target |
2 changes: 1 addition & 1 deletion
2
.github/workflows/scarb.yml → .github/workflows/arkproject-contracts.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: ArkProject contracts CI | ||
name: ArkProject contracts ci | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Bump version | ||
name: ArkProject github release | ||
on: | ||
push: | ||
branches: | ||
|
@@ -12,4 +12,4 @@ jobs: | |
id: tag_version | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: ArkProject crate CI | ||
name: ArkProject rs CI | ||
|
||
on: | ||
push: | ||
|
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Solis Deploy CDK Stack | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Buils contracts | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Setup Scarb | ||
uses: software-mansion/setup-scarb@v1 | ||
with: | ||
scarb-version: 2.3.1 | ||
- name: Build contracts | ||
run: cd contracts && scarb build -w | ||
deploy: | ||
name: Deploy Solis orderbook contract on goerli | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Deploy Solis orderbook contract | ||
env: | ||
STARKNET_NODE_URL_GOERLI: ${{ secrets.STARKNET_NODE_URL_GOERLI }} | ||
SOLIS_NODE_URL_GOERLI: ${{ secrets.SOLIS_NODE_URL_GOERLI }} | ||
STARKNET_ADMIN_ADDRESS_GOERLI: ${{ secrets.STARKNET_ADMIN_ADDRESS_GOERLI }} | ||
STARKNET_ADMIN_PRIVATE_KEY_GOERLI: ${{ secrets.STARKNET_ADMIN_PRIVATE_KEY_GOERLI }} | ||
STARKNET_ADMIN_PUBLIC_KEY_GOERLI: ${{ secrets.STARKNET_ADMIN_PUBLIC_KEY_GOERLI }} | ||
STARKNET_SOLIS_ACCOUNT_ADDRESS_GOERLI: ${{ secrets.STARKNET_SOLIS_ACCOUNT_ADDRESS_GOERLI }} | ||
STARKNET_SOLIS_ACCOUNT_PRIVATE_KEY_GOERLI: ${{ secrets.STARKNET_SOLIS_ACCOUNT_PRIVATE_KEY_GOERLI }} | ||
STARKNET_SOLIS_ACCOUNT_PUBLIC_KEY_GOERLI: ${{ secrets.STARKNET_SOLIS_ACCOUNT_PUBLIC_KEY_GOERLI }} | ||
SOLIS_ADMIN_ADDRESS_DEV: ${{ secrets.SOLIS_ADMIN_ADDRESS_DEV }} | ||
SOLIS_ADMIN_PRIVATE_KEY_DEV: ${{ secrets.SOLIS_ADMIN_PRIVATE_KEY_DEV }} | ||
SOLIS_ADMIN_PUBLIC_KEY_DEV: ${{ secrets.SOLIS_ADMIN_PUBLIC_KEY_DEV }} | ||
# deploy: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v2 | ||
|
||
# - name: Set up Node.js | ||
# uses: actions/setup-node@v2 | ||
# with: | ||
# node-version: "14" | ||
|
||
# - name: Change to CDK directory | ||
# run: cd aws/cdk-solis-ecs | ||
|
||
# - name: Install dependencies | ||
# run: npm install | ||
|
||
# - name: Deploy or update Starknet contracts | ||
|
||
# - name: Deploy CDK Stack Goerli | ||
# env: | ||
# RPC_URL: ${{ secrets.RPC_URL_GOERLI }} | ||
# MESSAGING_ADDRESS: ${{ secrets.MESSAGING_ADDRESS_GOERLI }} | ||
# SENDER_ADDRESS: ${{ secrets.SENDER_ADDRESS_GOERLI }} | ||
# PRIVATE_KEY: ${{ secrets.PRIVATE_KEY_GOERLI }} | ||
# run: npx cdk deploy --all --require-approval never |