Skip to content

Commit

Permalink
add github actions build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
neelkarma committed Dec 10, 2023
1 parent cdedb0c commit 939a57e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build
on: [workflow_dispatch, push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Install
run: pnpm i
- name: Build
run: pnpm build
- name: Publish Build
uses: actions/upload-artifact@v3
with:
name: www
path: dist

0 comments on commit 939a57e

Please sign in to comment.