-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CICD for Frontend to push static to S3 (#12)
* feat: add CI for frontend * fix: add env stage
- Loading branch information
1 parent
865fb8e
commit dbd1d60
Showing
2 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
.github/workflows/build_and_deploy.yml → ...orkflows/build_and_deploy_DTM_backend.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Build and Deploy Drone Tasking Manager Frontend | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- src/frontend/** | ||
workflow_dispatch: | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
env: | ||
AWS_REGION: ap-south-1 | ||
S3_BUCKET: dronetm | ||
|
||
jobs: | ||
build: | ||
name: Build JavaScript assets | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: ${{ github.ref_name }} | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.ref_name }} | ||
|
||
- name: Use Node.js 19.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 19.x | ||
|
||
- name: Install yarn | ||
working-directory: ./src/frontend/ | ||
run: npm install -g yarn | ||
|
||
- name: Cache node_modules | ||
uses: actions/cache@v2 | ||
with: | ||
path: ./src/frontend/node_modules | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Write Environment Variables | ||
id: write_env | ||
working-directory: ./src/frontend/ | ||
run: | | ||
echo ${{ vars.FRONTEND_ENV_VARS }} > .env | ||
- name: Install dependencies | ||
working-directory: ./src/frontend/ | ||
run: yarn | ||
|
||
- name: Generate build | ||
working-directory: ./src/frontend/ | ||
run: | | ||
yarn build | ||
- name: Setup AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
audience: sts.amazonaws.com | ||
aws-region: ${{ env.AWS_REGION }} | ||
role-session-name: GH-Actions-${{ github.run_id }}-${{ github.run_attempt }} | ||
role-to-assume: ${{ secrets.AWS_OIDC_ROLE_ARN }} | ||
|
||
- name: Copy Static Files to S3 | ||
working-directory: ./src/frontend/ | ||
run: | | ||
pwd | ||
ls -alh | ||
aws s3 cp --recursive ./dist/* s3://dronetm/ |