Skip to content

Commit

Permalink
chore: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pnodet committed Aug 26, 2024
1 parent c9e86d5 commit c8e7997
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy
on:
pull_request:
push:
branches:
- '**'
tags:
- '!**'

jobs:
build:
runs-on: ubuntu-latest

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

- run: corepack enable
- uses: oven-sh/setup-bun@v2

- name: Install dependencies
run: bun install

- name: Build
run: bun build

- run: bunx pkg-pr-new publish --compact --comment=update

0 comments on commit c8e7997

Please sign in to comment.