Skip to content

Commit

Permalink
Add github action auto-deplyment
Browse files Browse the repository at this point in the history
  • Loading branch information
protonchang committed Jul 11, 2024
1 parent b378c8b commit 543718f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Add-in Build
on: push
jobs:
build:
runs-on: ubuntu-latest
environment: development
steps:
- uses: actions/checkout@v4
- name: Use Node.JS 20 LTS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build Add-in
run: |
echo "${{ secrets.BUILD_DOTENV }}" | base64 --decode > .env
sed -i "/<AppDomain>https:\/\/quire.io\/<\/AppDomain>/a\ ${{ secrets.APP_DOMAIN }}" manifest.xml
sed -i "s|const urlProd = \"https://add-in-hosting-cdn-url/\";|const urlProd = \"${{ secrets.URL_PROD }}\";|" webpack.config.js
npm install
npm run build
find ./dist -name "*.map" -type f | xargs rm -f
find ./dist -name "*.LICENSE.txt" -type f | xargs rm -f
38 changes: 38 additions & 0 deletions .github/workflows/prod_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Add-in Build and Deploy
on:
push:
tags:
- "*-prod"
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
- name: Use Node.JS 20 LTS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build Add-in
run: |
echo "${{ secrets.BUILD_DOTENV }}" | base64 --decode > .env
sed -i "/<AppDomain>https:\/\/quire.io\/<\/AppDomain>/a\ ${{ secrets.APP_DOMAIN }}" manifest.xml
sed -i "s|const urlProd = \"https://add-in-hosting-cdn-url/\";|const urlProd = \"${{ secrets.URL_PROD }}\";|" webpack.config.js
npm install
npm run build
find ./dist -name "*.map" -type f | xargs rm -f
find ./dist -name "*.LICENSE.txt" -type f | xargs rm -f
- name: Deploy to AWS
uses: aws-actions/configure-aws-credentials@v4.0.2
with:
role-to-assume: ${{ secrets.ROLE_ARN }}
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: us-west-2
- name: Deploy dist file to prod
run: |
aws s3 rm --recursive s3://${{ secrets.BUCKET_NAME }}
aws s3 cp --recursive ./dist/ s3://${{ secrets.BUCKET_NAME }}
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_ID }} --paths /*

0 comments on commit 543718f

Please sign in to comment.