We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09986a2 commit b724764Copy full SHA for b724764
.github/workflows/pr.yml
@@ -57,7 +57,11 @@ jobs:
57
- name: Build Packages
58
run: pnpm run build:all
59
- name: Publish Previews
60
- run: pnpx pkg-pr-new publish --pnpm --compact './packages/!(angular-query-experimental)' './packages/angular-query-experimental/build' --template './examples/*/*'
+ shell: bash
61
+ # first exclude angular-query-experimental, then add explicitly with build subpath where the package is built
62
+ run: |
63
+ dirs=($(find ./packages -mindepth 1 -maxdepth 1 -type d ! -name 'angular-query-experimental') './packages/angular-query-experimental/build')
64
+ pnpx pkg-pr-new publish --pnpm --compact "${dirs[@]}" --template './examples/*/*'
65
- name: Determine commit SHA
66
id: determine-sha
67
run: |
0 commit comments