diff --git a/.github/workflows/deploy-ewc.yml b/.github/workflows/deploy-ewc.yml index 17bfb9f4..88c7c48a 100644 --- a/.github/workflows/deploy-ewc.yml +++ b/.github/workflows/deploy-ewc.yml @@ -111,7 +111,7 @@ jobs: # Script to deploy to staging environment - name: 'Deploy to S3: Staging' if: github.ref == 'refs/heads/master' - run: aws s3 sync build s3://${{ secrets.STAGING_BUCKET_NAME }}/current/app --delete + run: aws s3 sync build s3://${{ env.STAGING_BUCKET_NAME }}/current/app --delete # Script to upload release files - run: bash ./scripts/github/deploy_release.sh diff --git a/.github/workflows/deploy-mainnet.yml b/.github/workflows/deploy-mainnet.yml index a5c660f2..6cef9c52 100644 --- a/.github/workflows/deploy-mainnet.yml +++ b/.github/workflows/deploy-mainnet.yml @@ -92,7 +92,7 @@ jobs: # Script to deploy to staging environment - name: 'Deploy to S3: Staging' if: github.ref == 'refs/heads/master' # Or refs/heads/main - run: aws s3 sync build s3://${{ secrets.STAGING_BUCKET_NAME }}/current/app --delete + run: aws s3 sync build s3://${{ env.STAGING_BUCKET_NAME }}/current/app --delete # Script to upload release files - run: bash ./scripts/github/deploy_release.sh diff --git a/.github/workflows/deploy-rinkeby.yml b/.github/workflows/deploy-rinkeby.yml index 18670479..1f4cc0e2 100644 --- a/.github/workflows/deploy-rinkeby.yml +++ b/.github/workflows/deploy-rinkeby.yml @@ -118,7 +118,7 @@ jobs: # Script to deploy to staging environment - name: 'Deploy to S3: Staging' if: github.ref == 'refs/heads/master' - run: aws s3 sync build s3://${{ secrets.STAGING_BUCKET_NAME }}/current/app --delete + run: aws s3 sync build s3://${{ env.STAGING_BUCKET_NAME }}/current/app --delete # Script to upload release files - run: bash ./scripts/github/deploy_release.sh diff --git a/.github/workflows/deploy-volta.yml b/.github/workflows/deploy-volta.yml index a615e399..3c1418be 100644 --- a/.github/workflows/deploy-volta.yml +++ b/.github/workflows/deploy-volta.yml @@ -115,7 +115,7 @@ jobs: # Script to deploy to staging environment - name: 'Deploy to S3: Staging' if: github.ref == 'refs/heads/master' - run: aws s3 sync build s3://${{ secrets.STAGING_BUCKET_NAME }}/current/app --delete + run: aws s3 sync build s3://${{ env.STAGING_BUCKET_NAME }}/current/app --delete # Script to upload release files - run: bash ./scripts/github/deploy_release.sh diff --git a/.github/workflows/deploy-xdai.yml b/.github/workflows/deploy-xdai.yml index 0cd02f90..1384779d 100644 --- a/.github/workflows/deploy-xdai.yml +++ b/.github/workflows/deploy-xdai.yml @@ -114,7 +114,7 @@ jobs: # Script to deploy to staging environment - name: 'Deploy to S3: Staging' if: github.ref == 'refs/heads/master' - run: aws s3 sync build s3://${{ secrets.STAGING_BUCKET_NAME }}/current/app --delete + run: aws s3 sync build s3://${{ env.STAGING_BUCKET_NAME }}/current/app --delete # Script to upload release files - run: bash ./scripts/github/deploy_release.sh