-
-
Notifications
You must be signed in to change notification settings - Fork 11
44 lines (37 loc) · 1.12 KB
/
preview-release.yml
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
name: Publish Preview Release
on:
pull_request:
jobs:
preview-release:
if: github.repository == 'sveltejs/cli'
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: setup node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Run changed-files
id: changed-files
uses: tj-actions/changed-files@v44
with:
separator: ' '
dir_names: 'true'
dir_names_max_depth: '2' # truncates the path to packages/package-name
files: |
packages/**
- name: install dependencies
run: pnpm install
- name: build
run: pnpm build
- name: publish preview
if: ${{ steps.changed-files.outputs.all_changed_files_count > 0 }}
env:
CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }}
# run: |
# node scripts/get-deps-to-publish.js
run: pnpm dlx [email protected] publish --pnpm './packages/*'