Fix wrong script route in S3 deployment (#1949)
This commit is contained in:
parent
b4de1b669a
commit
8f3a70033a
|
@ -103,7 +103,7 @@ jobs:
|
||||||
|
|
||||||
# Script to deploy to staging environment
|
# Script to deploy to staging environment
|
||||||
- name: 'Deploy to S3: Staging'
|
- name: 'Deploy to S3: Staging'
|
||||||
run: bash ./scripts/deploy_to_s3_bucket.sh
|
run: bash ./scripts/github/deploy_to_s3_bucket.sh
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
env:
|
env:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
|
@ -84,7 +84,7 @@ jobs:
|
||||||
|
|
||||||
# Script to deploy to staging environment
|
# Script to deploy to staging environment
|
||||||
- name: 'Deploy to S3: Staging'
|
- name: 'Deploy to S3: Staging'
|
||||||
run: bash ./scripts/deploy_to_s3_bucket.sh
|
run: bash ./scripts/github/deploy_to_s3_bucket.sh
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
env:
|
env:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
|
@ -105,7 +105,7 @@ jobs:
|
||||||
|
|
||||||
# Script to deploy to development environment
|
# Script to deploy to development environment
|
||||||
- name: 'Deploy to S3: Develop'
|
- name: 'Deploy to S3: Develop'
|
||||||
run: bash ./scripts/deploy_to_s3_bucket.sh
|
run: bash ./scripts/github/deploy_to_s3_bucket.sh
|
||||||
if: github.ref == 'refs/heads/development'
|
if: github.ref == 'refs/heads/development'
|
||||||
env:
|
env:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
@ -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'
|
||||||
run: bash ./scripts/deploy_to_s3_bucket.sh
|
run: bash ./scripts/github/deploy_to_s3_bucket.sh
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
env:
|
env:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
|
@ -106,7 +106,7 @@ jobs:
|
||||||
|
|
||||||
# Script to deploy to staging environment
|
# Script to deploy to staging environment
|
||||||
- name: 'Deploy to S3: Staging'
|
- name: 'Deploy to S3: Staging'
|
||||||
run: bash ./scripts/deploy_to_s3_bucket.sh
|
run: bash ./scripts/github/deploy_to_s3_bucket.sh
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
env:
|
env:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
|
@ -106,7 +106,7 @@ jobs:
|
||||||
|
|
||||||
# Script to deploy to staging environment
|
# Script to deploy to staging environment
|
||||||
- name: 'Deploy to S3: Staging'
|
- name: 'Deploy to S3: Staging'
|
||||||
run: bash ./scripts/deploy_to_s3_bucket.sh
|
run: bash ./scripts/github/deploy_to_s3_bucket.sh
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
env:
|
env:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
Loading…
Reference in New Issue