This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
forked from safe-global/safe-wallet-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d84f4e3
commit 6f57948
Showing
2 changed files
with
94 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: klaytn-safe-react dev deploy workflow | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
deploy: | ||
permissions: | ||
id-token: write | ||
contents: read | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: ${{ secrets.AWS_IAM_ROLE_ARN_DEV }} | ||
role-session-name: SessionForKlaytnActions | ||
aws-region: ${{ secrets.AWS_REGION_DEV }} | ||
|
||
- name: Installing Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
|
||
- name: Installing dependencies | ||
run: | | ||
yarn install | ||
cp -r ./safe-deployment-assets/* ./node_modules/@gnosis.pm/safe-deployments/dist/assets/ | ||
cp -r ./safe-deployment-assets/* ./node_modules/@gnosis.pm/safe-core-sdk/node_modules/@gnosis.pm/safe-deployments/dist/assets/ | ||
- name: Build static files | ||
env: | ||
REACT_APP_GATEWAY_URL: ${{ secrets.REACT_APP_GATEWAY_URL_DEV }} | ||
run: yarn build | ||
|
||
- name: Sync to S3 bucket and validation cloudfront | ||
env: | ||
S3_BUCKET: ${{ secrets.S3_BUCKET_DEV }} | ||
CLOUDFRONT_ID: ${{ secrets.CLOUDFRONT_ID_DEV }} | ||
run: | | ||
aws s3 sync ./build $S3_BUCKET --delete | ||
aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_ID --paths "/*" |
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,47 @@ | ||
name: klaytn-safe-react production deploy workflow | ||
on: | ||
push: | ||
tags: | ||
- v[0-9]+.[0-9]+.[0-9]+ | ||
|
||
jobs: | ||
deploy: | ||
permissions: | ||
id-token: write | ||
contents: read | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: ${{ secrets.AWS_IAM_ROLE_ARN_PROD }} | ||
role-session-name: SessionForKlaytnActions | ||
aws-region: ${{ secrets.AWS_REGION_PROD }} | ||
|
||
- name: Installing Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
|
||
- name: Installing dependencies | ||
run: | | ||
yarn install | ||
cp -r ./safe-deployment-assets/* ./node_modules/@gnosis.pm/safe-deployments/dist/assets/ | ||
cp -r ./safe-deployment-assets/* ./node_modules/@gnosis.pm/safe-core-sdk/node_modules/@gnosis.pm/safe-deployments/dist/assets/ | ||
- name: Build static files | ||
env: | ||
REACT_APP_GATEWAY_URL: ${{ secrets.REACT_APP_GATEWAY_URL_PROD }} | ||
run: yarn build | ||
|
||
- name: Sync to S3 bucket and validation cloudfront | ||
env: | ||
S3_BUCKET: ${{ secrets.S3_BUCKET_PROD }} | ||
CLOUDFRONT_ID: ${{ secrets.CLOUDFRONT_ID_PROD }} | ||
run: | | ||
aws s3 sync ./build $S3_BUCKET --delete | ||
aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_ID --paths "/*" |