Skip to content

Commit

Permalink
DO-4304 testing branch-deploy mechanics
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeD42 committed Aug 31, 2023
1 parent 31abcc4 commit 7f9cd12
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/DO-4304.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build and Deploy Dev

on:
push:
branches:
- DO-4304

jobs:
build_artifact:
uses: ./.github/workflows/build-commit.yml

deploy_dev:
needs: build_artifact
runs-on: ubuntu-latest
environment: dev
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Download artifact
uses: actions/download-artifact@v3
with:
name: yarn-${{ github.sha }}

- name: Unpack artifact
run: tar -xvf build.tar.gz

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- name: Sync to S3
run: |
aws s3 sync build/ s3://${{ vars.S3_BUCKET }} --delete --exclude assets/images/* --exclude assets/videos/*
aws s3 sync build/ s3://${{ vars.S3_BUCKET }} --size-only --delete
- name: Invalidate CF cache
run: |
INVAL_ID=$(aws cloudfront create-invalidation --distribution-id ${{ vars.CF_DISTRO }} --paths "/*" | jq -r .Invalidation.Id )
aws cloudfront wait invalidation-completed --distribution-id ${{ vars.CF_DISTRO }} --id $INVAL_ID
42 changes: 42 additions & 0 deletions .github/workflows/build-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build Commit

on:
workflow_call

jobs:
set_concurrency:
concurrency:
group: build-${{ github.ref_name }}
cancel-in-progress: true

build_artifact:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.14'

- name: Setup Algolia Access
run: |
sed -i 's/<ENV_ALGOLIA_INDEX>/${{ vars.ENV_ALGOLIA_INDEX }}/g' docusaurus.config.js
sed -i 's/<ENV_ALGOLIA_APP_ID>/${{ secrets.ENV_ALGOLIA_APP_ID }}/g' docusaurus.config.js
sed -i 's/<ENV_ALGOLIA_READ_KEY>/${{ secrets.ENV_ALGOLIA_READ_KEY }}/g' docusaurus.config.js
- name: Install Dependencies
run: yarn

- name: Build
run: yarn build

- name: Compress
run: tar -czf build.tar.gz build/

- name: Archive build
uses: actions/upload-artifact@v3
with:
name: yarn-${{ github.sha }}
path: build.tar.gz

0 comments on commit 7f9cd12

Please sign in to comment.