Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMBligh committed Nov 28, 2023
1 parent c203633 commit 4d3fe19
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy to AWS

on:
push:
branches:
- deploy

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build
uses: actions/setup-node@v1
with:
node-version: '18.x'
- run: npm install
- run: npm run build
- run: npm run docker-build

0 comments on commit 4d3fe19

Please sign in to comment.