Skip to content

Commit

Permalink
use pkg.pr.new for dev builds
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperchupuDev committed Aug 23, 2024
1 parent 2f36404 commit b298cc8
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish Preview
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install Node 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: node --run build

- name: Publish to pkg.pr.new
run: pnpm dlx [email protected] publish --compact --pnpm .

0 comments on commit b298cc8

Please sign in to comment.