We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8402819 commit 3e273cfCopy full SHA for 3e273cf
.github/workflows/deploy-local-preview-dev.yml
@@ -18,7 +18,7 @@ env:
18
jobs:
19
dev:
20
if: github.event_name == 'push'
21
- runs-on: macos-latest
+ runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@v4
24
- uses: aws-actions/configure-aws-credentials@v4
@@ -38,6 +38,9 @@ jobs:
38
- name: Remove unnecessary files
39
working-directory: packages/fern-docs/bundle
40
run: find .next -depth -mindepth 1 -not -path ".next/standalone*" -exec rm -rf {} \;
41
+ - name: Remove esbuild dependency
42
+ working-directory: packages/fern-docs/bundle
43
+ run: rm -rf .next/standalone/node_modules/.pnpm/[email protected]
44
- name: Synthesize local preview bundle
45
run: pnpm --filter=@fern-platform/cdk run deploy-app:dev2
46
0 commit comments