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.
2 parents 31cad9d + 15ab8f1 commit 431dac3Copy full SHA for 431dac3
.github/workflows/release.yml
@@ -23,8 +23,14 @@ jobs:
23
- name: Install Dependencies
24
run: bun install --frozen-lockfile
25
26
- - name: Build packages
27
- run: bun run build
+ - name: Build main package
+ run: cd packages/flipper && bun run build
28
+
29
+ - name: Build dependent packages
30
+ run: |
31
+ cd packages/flipper-cache && bun run build
32
+ cd ../../packages/flipper-redis && bun run build
33
+ cd ../../packages/flipper-sequelize && bun run build
34
35
- name: Create Release Pull Request or Publish to npm
36
id: changesets
0 commit comments