Skip to content

Commit

Permalink
add deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Mar 10, 2024
1 parent b845b7b commit b6e4bda
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 34 deletions.
34 changes: 0 additions & 34 deletions .actions/deploy.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: '19'

- name: Checkout 🛎️
uses: actions/checkout@v2.3.1

- name: Build 🔧
run: |
npm run deploy

0 comments on commit b6e4bda

Please sign in to comment.