Skip to content

Commit

Permalink
🤖 Use make for PR releases
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Aug 3, 2024
1 parent 1e7e2d2 commit 7652716
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/continuous-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,4 @@ jobs:
node-version: 20
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- run: pnpx pkg-pr-new publish ./libs/* --template ./libs/create-qwikdev-astro/stubs/templates/default/*
- run: make pr-release
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: install dev start check fix test build release
.PHONY: install dev start check fix test build release pr-release

install: node_modules pnpm-lock.yaml

Expand Down Expand Up @@ -27,5 +27,8 @@ fix: install
build: fix
pnpm build

pr-release: test
pnpx pkg-pr-new publish ./libs/* --template ./libs/create-qwikdev-astro/stubs/templates/default/*

release: test
pnpm release

0 comments on commit 7652716

Please sign in to comment.