Skip to content

Commit

Permalink
build: publish commits
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Oct 15, 2024
1 parent 95585c5 commit a6cfecf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish Any Commit

on: [push, pull_request]

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x

- uses: pnpm/action-setup@v2

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm build

- run: pnpx pkg-pr-new publish --compact

0 comments on commit a6cfecf

Please sign in to comment.