Skip to content

Commit

Permalink
add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinfiol committed Oct 11, 2023
1 parent 193889c commit 1db09b1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,24 @@
name: build
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
- name: Install and Run Node Script
run: |
pnpm install --prod
pnpm run build
- name: deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
single-commit: true
git-config-email: <>
branch: gh-pages
folder: output

0 comments on commit 1db09b1

Please sign in to comment.