-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* separate develop and production environments * add workflow for testnet (testnet-deploy.yml) * add env-cmd dependency * remove package-lock.json from gitignore
- Loading branch information
1 parent
f130833
commit 1737351
Showing
7 changed files
with
37,825 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
VUE_APP_WS_URL=wss://backend.explorer.rsk.co | ||
VUE_APP_APPS_URL="" | ||
VUE_APP_STATS_URL=https://stats.rsk.co | ||
VUE_APP_GA_TAG='' | ||
VUE_APP_HOTJAR_ID='' | ||
VUE_APP_GA_TAG=GTM-56J7JTD | ||
VUE_APP_HOTJAR_ID=1857874 | ||
VUE_APP_STREAM_MITM_URL=/mitm/index.html | ||
VUE_APP_APPS_URL='' |
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,6 @@ | ||
VUE_APP_WS_URL=wss://backend.explorer.testnet.rsk.co | ||
VUE_APP_APPS_URL=https://apps.explorer.testnet.rsk.co | ||
VUE_APP_STATS_URL=https://stats.testnet.rsk.co | ||
VUE_APP_GA_TAG=UA-136026316-1 | ||
VUE_APP_HOTJAR_ID=1901396 | ||
VUE_APP_STREAM_MITM_URL=/mitm/index.html |
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,40 @@ | ||
name: RSK Explorer testnet build and deploy | ||
|
||
on: | ||
push: | ||
branches: [develop] | ||
|
||
jobs: | ||
testnet_build_and_deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node 16 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "16" | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build site | ||
run: npm run build-with-tracking:testnet | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.TESTNET_ROLE_ARN }} | ||
aws-region: ${{ secrets.TESTNET_AWS_REGION }} | ||
|
||
- name: Deploy site to S3 | ||
run: | | ||
aws s3 sync --sse aws:kms --sse-kms-key-id ${{ secrets.TESTNET_KMS_KEY_ID }} --delete --only-show-errors --exclude .gitkeep dist/ ${{ secrets.TESTNET_S3_BUCKET }} | ||
- name: Invalidate CloudFront cache | ||
run: | | ||
aws cloudfront create-invalidation --distribution-id ${{ secrets.TESTNET_CLOUDFRONT_DISTRIBUTION }} --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 |
---|---|---|
|
@@ -22,6 +22,3 @@ yarn-error.log* | |
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
# package-lock.json | ||
package-lock.json |
Oops, something went wrong.