Skip to content

Commit

Permalink
Merge pull request #1 from beNEXT-io/main
Browse files Browse the repository at this point in the history
[WIP] Add workflow to build and publish to AWS S3 bucket
  • Loading branch information
dselman authored Jul 14, 2023
2 parents 882e99d + b45dfee commit 3e7f3ea
Show file tree
Hide file tree
Showing 3 changed files with 689 additions and 572 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build and Publish

on:
push:
branches:
- main

jobs:

build:

runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: NPM Install
if: github.ref == 'refs/heads/main'
run: npm install

- name: NPM Build
run: SERVER_ROOT=https://playground.accordproject.org && npm run build
if: github.ref == 'refs/heads/main'

- name: Set S3
if: github.ref == 'refs/heads/main'
run: |
echo "AWS_S3_BUCKET=${{secrets.AWS_S3_BUCKET}}" >> $GITHUB_ENV
- name: Deploy to S3
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
SOURCE_DIR: 'build'

- name: Invalidate Cloudfront
uses: chetan/invalidate-cloudfront-action@master
env:
DISTRIBUTION: ${{secrets.AWS_CLOUDFRONT_DISTRIBUTION_ID}}
PATHS: '/*'
AWS_REGION: ${{secrets.AWS_REGION}}
Loading

0 comments on commit 3e7f3ea

Please sign in to comment.