-
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (37 loc) · 1.1 KB
/
Copy pathrelease-preview.yml
File metadata and controls
46 lines (37 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: 🚀 Release (preview)
on:
push:
branches:
- main
paths:
- ./packages/*
tags:
- "!**"
pull_request:
branches: [dev]
jobs:
preview:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: ⎔ Enable corepack
run: corepack enable
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: 🟧 Install dependencies
run: pnpm install --recursive --frozen-lockfile --strict-peer-dependencies
- name: 🔐 Setup npm auth
run: |
echo "registry=https://registry.npmjs.org" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
- name: 🟧 Set publish-branch to current branch
run: |
echo "publish-branch=$(git branch --show-current)" >> ~/.npmrc
- name: 🏗️ Build
run: pnpm run build
- name: 🚀 Publish PR
run: pnpx pkg-pr-new publish './packages/*' --template './examples/*'