Skip to content

Commit 4cd636e

Browse files
committed
fix demo app: test
1 parent e466f27 commit 4cd636e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,27 @@ jobs:
2929

3030
# Set the credentials from repository settings/secrets
3131
- name: Configure AWS credentials
32-
if: github.ref == 'refs/heads/master'
32+
if: github.ref == 'refs/heads/fix/demo-app'
3333
uses: aws-actions/configure-aws-credentials@v4
3434
with:
3535
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
3636
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3737
aws-region: ${{ secrets.AWS_REGION_US }}
3838

3939
- name: Build new vue demo app
40-
if: github.ref == 'refs/heads/master'
40+
if: github.ref == 'refs/heads/fix/demo-app'
4141
run: |
4242
cd demo/vue-app-new
4343
npm install
4444
npm run build
4545
env:
46-
VITE_SOLANA_MAINNET_RPC: ${{ secrets.VITE_SOLANA_MAINNET_RPC }}
46+
VITE_SOLANA_MAINNET_RPC: https://omniscient-fabled-pool.solana-mainnet.quiknode.pro/c07218c84ba51cac60d68e60364f24225bd5e972
4747
VITE_APP_PIMLICO_API_KEY: ${{ secrets.PIMLICO_API_KEY }}
4848

4949
# Copy the files from build folder to the S3 bucket
5050
# Upload to S3
5151
- name: sync vue app new s3
52-
if: github.ref == 'refs/heads/master'
52+
if: github.ref == 'refs/heads/fix/demo-app'
5353
uses: jakejarvis/s3-sync-action@master
5454
env:
5555
SOURCE_DIR: "./demo/vue-app-new/dist"
@@ -60,7 +60,7 @@ jobs:
6060

6161
# Invalidate Cloudfront (this action)
6262
- name: invalidate vue app new s3
63-
if: github.ref == 'refs/heads/master'
63+
if: github.ref == 'refs/heads/fix/demo-app'
6464
uses: chaitanyapotti/cloudfront-update-distribution@v4
6565
with:
6666
cloudfront-distribution-id: ${{ secrets.AWS_CLOUDFRONT_NEW_DEMO_APP_DISTRIBUTION_ID }}

0 commit comments

Comments
 (0)