-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix transactions empty state message * Update deployment files
- Loading branch information
Showing
5 changed files
with
97 additions
and
9 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
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,44 @@ | ||
name: deploy-mainnet | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
repository_dispatch: | ||
types: deploy-mainnet | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '16.x' | ||
- name: Setup yarn | ||
run: npm install -g yarn | ||
- run: yarn install | ||
- run: yarn build:mainnet | ||
env: | ||
CI: false | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: 'us-east-1' | ||
- name: Deploy to S3 bucket | ||
run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_MAINNET }} --delete | ||
- name: Slack Notification | ||
uses: rtCamp/action-slack-notify@master | ||
env: | ||
SLACK_ICON_EMOJI: ':nerd_face:' | ||
SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET_MAINNET }} | ||
SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_MAINNET }} | ||
SLACK_FOOTER: '' | ||
MSG_MINIMAL: true | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |
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,44 @@ | ||
name: deploy-testnet | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
repository_dispatch: | ||
types: deploy-testnet | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '16.x' | ||
- name: Setup yarn | ||
run: npm install -g yarn | ||
- run: yarn install | ||
- run: yarn build:testnet | ||
env: | ||
CI: false | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: 'us-east-1' | ||
- name: Deploy to S3 bucket | ||
run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_TESTNET }} --delete | ||
- name: Slack Notification | ||
uses: rtCamp/action-slack-notify@master | ||
env: | ||
SLACK_ICON_EMOJI: ':nerd_face:' | ||
SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET_TESTNET }} | ||
SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_TESTNET }} | ||
SLACK_FOOTER: '' | ||
MSG_MINIMAL: true | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |
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
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