File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 5959 - name : Upload tdb-dashboard prod
6060 if : ${{ github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v') }}
6161 run : gsutil -h "Cache-Control:public, max-age=60" cp -r packages/tdb-dashboard/dist/* "gs://${{ secrets.GCLOUD_BUCKET }}/"
62+ - name : Upload tdb-dashboard to dev s3
63+ env :
64+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
65+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
66+ run : aws s3 sync packages/tdb-dashboard/dist/ s3://${{ secrets.S3_DEV_BUCKET }}
67+ - name : Upload tdb-dashboard to prod s3
68+ env :
69+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
70+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
71+ run : aws s3 sync packages/tdb-dashboard/dist/ s3://${{ secrets.S3_PROD_BUCKET }}
6272 - name : Clean cloudflare cache
6373 if : ${{ github.event_name != 'pull_request' }}
6474 run : python3 .ci/clean_cloudflare_cache.py ${{ github.ref }}
You can’t perform that action at this time.
0 commit comments