Skip to content

Commit

Permalink
continuous releases (#1580)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslemammad committed Jul 15, 2024
1 parent c667325 commit 11de19f
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/cr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: ⚡️ Continuous Releases

on:
push:
branches:
- main
merge_group:
pull_request:

jobs:
cr:
name: "⚡️ Continuous Releases"

strategy:
fail-fast: false

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
with:
version: 9

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

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

- name: Build start
run: pnpm run build:all

- name: Release
run: pnpm dlx pkg-pr-new@0.0 publish './packages/start' --template './examples/*' --compact

0 comments on commit 11de19f

Please sign in to comment.