Skip to content

Commit

Permalink
Add workflow for continuous releases
Browse files Browse the repository at this point in the history
  • Loading branch information
dawsonbooth committed Nov 29, 2024
1 parent 6cf8920 commit 68b7e32
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-any-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Any Commit
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Build
run: bun run build

- run: bunx pkg-pr-new publish

0 comments on commit 68b7e32

Please sign in to comment.