Skip to content

Commit

Permalink
Fix workflows depending on core
Browse files Browse the repository at this point in the history
  • Loading branch information
Didas-git committed Sep 5, 2024
1 parent c5393a5 commit 1ac06ee
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-handlers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
node-version: latest
registry-url: https://registry.npmjs.org
- name: Install Dependencies & Build
- name: Install Dependencies
run: bun i --frozen-lockfile
- name: Build
run: bun run build:core && bun run build:transformers && bun run build:handlers
- name: Publish handlers
# Bun doesnt have any publish methods yet
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-jsx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
node-version: latest
registry-url: https://registry.npmjs.org
- name: Install Dependencies & Build
- name: Install Dependencies
run: bun i --frozen-lockfile
- name: Build
run: bun run build:core && bun run build:jsx
- name: Publish jsx
# Bun doesnt have any publish methods yet
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
node-version: latest
registry-url: https://registry.npmjs.org
- name: Install Dependencies & Build
- name: Install Dependencies
run: bun i --frozen-lockfile
- name: Build
run: bun run build:core && bun run build:redis
- name: Publish Redis
# Bun doesnt have any publish methods yet
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-transformers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
node-version: latest
registry-url: https://registry.npmjs.org
- name: Install Dependencies & Build
- name: Install Dependencies
run: bun i --frozen-lockfile
- name: Build
run: bun run build:core && bun run build:transformers
- name: Publish transformers
# Bun doesnt have any publish methods yet
Expand Down

0 comments on commit 1ac06ee

Please sign in to comment.