Merge pull request #1983 from gnosis/release/v3.1.0

Fix staging deployment
This commit is contained in:
Daniel Sanchez 2021-03-03 11:04:27 +01:00 committed by GitHub
commit 01e76fe771
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -111,7 +111,7 @@ jobs:
# Script to deploy to staging environment # Script to deploy to staging environment
- name: 'Deploy to S3: Staging' - name: 'Deploy to S3: Staging'
if: github.ref == 'refs/heads/master' 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 # Script to upload release files
- run: bash ./scripts/github/deploy_release.sh - run: bash ./scripts/github/deploy_release.sh

View File

@ -92,7 +92,7 @@ jobs:
# Script to deploy to staging environment # Script to deploy to staging environment
- name: 'Deploy to S3: Staging' - name: 'Deploy to S3: Staging'
if: github.ref == 'refs/heads/master' # Or refs/heads/main 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 # Script to upload release files
- run: bash ./scripts/github/deploy_release.sh - run: bash ./scripts/github/deploy_release.sh

View File

@ -118,7 +118,7 @@ jobs:
# Script to deploy to staging environment # Script to deploy to staging environment
- name: 'Deploy to S3: Staging' - name: 'Deploy to S3: Staging'
if: github.ref == 'refs/heads/master' 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 # Script to upload release files
- run: bash ./scripts/github/deploy_release.sh - run: bash ./scripts/github/deploy_release.sh

View File

@ -115,7 +115,7 @@ jobs:
# Script to deploy to staging environment # Script to deploy to staging environment
- name: 'Deploy to S3: Staging' - name: 'Deploy to S3: Staging'
if: github.ref == 'refs/heads/master' 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 # Script to upload release files
- run: bash ./scripts/github/deploy_release.sh - run: bash ./scripts/github/deploy_release.sh

View File

@ -114,7 +114,7 @@ jobs:
# Script to deploy to staging environment # Script to deploy to staging environment
- name: 'Deploy to S3: Staging' - name: 'Deploy to S3: Staging'
if: github.ref == 'refs/heads/master' 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 # Script to upload release files
- run: bash ./scripts/github/deploy_release.sh - run: bash ./scripts/github/deploy_release.sh