Skip to content

Commit

Permalink
chore: Deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsahaj committed May 10, 2024
1 parent f15060f commit 7bb12ec
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 GitHub Pages

on:
push:
branches: [main]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install deps
run: npm run install

- name: Build website
run: npm run build

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: website
path: ./dist

0 comments on commit 7bb12ec

Please sign in to comment.