Skip to content

Fix grammar (#128) #157

Fix grammar (#128)

Fix grammar (#128) #157

Workflow file for this run

name: Cloud-Deploy
on:
push:
branches: [ main ]
# # Publish semver tags as releases.
# tags: [ 'v*.*.*' ]
jobs:
deploy:
name: deploy
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
deployments: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/setup-go@v3
with:
go-version: '1.18.3'
- run: go version
- run: |
make frontend-dep
cd frontend
yarn run build -- --configuration cloud_sandbox --output-path=../dist
- name: Configure AWS credentials using delegated access
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: arn:aws:iam::410145376638:role/fasten-sandbox-app-gh-frontend-deploy-role
aws-region: us-east-1
- name: Copy files to the test website with the AWS CLI
run: |
rm -rf dist/index.html
mv dist/index-cloud.html dist/index.html
aws s3 sync dist s3://app-sandbox.fastenhealth.com --acl public-read
- uses: chrnorm/deployment-action@v2
name: Create GitHub deployment
id: deployment
with:
token: '${{ github.token }}'
environment-url: https://app-sandbox.fastenhealth.com/
environment: sandbox
initial-status: success