Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Didas-git committed Apr 30, 2024
1 parent 696810c commit decc50e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
run: cd packages/create && bun run build
- name: Publish create
# Bun doesnt have any publish methods yet
run: cd packages/core && npm publish --provenance --no-git-checks --access public
run: cd packages/create && npm publish --provenance --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM}}
2 changes: 1 addition & 1 deletion .github/workflows/publish-handlers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
run: sh ./build.sh
- name: Publish handlers
# Bun doesnt have any publish methods yet
run: cd packages/core && npm publish --provenance --no-git-checks --access public
run: cd packages/handlers && npm publish --provenance --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM}}
2 changes: 1 addition & 1 deletion .github/workflows/publish-jsx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
run: sh ./build.sh
- name: Publish jsx
# Bun doesnt have any publish methods yet
run: cd packages/core && npm publish --provenance --no-git-checks --access public
run: cd packages/jsx && npm publish --provenance --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM}}
2 changes: 1 addition & 1 deletion .github/workflows/publish-redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
run: sh ./build.sh
- name: Publish Redis
# Bun doesnt have any publish methods yet
run: cd packages/core && npm publish --provenance --no-git-checks --access public
run: cd packages/redis && npm publish --provenance --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM}}
2 changes: 1 addition & 1 deletion .github/workflows/publish-transformers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
run: sh ./build.sh
- name: Publish transformers
# Bun doesnt have any publish methods yet
run: cd packages/core && npm publish --provenance --no-git-checks --access public
run: cd packages/transformers && npm publish --provenance --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM}}

0 comments on commit decc50e

Please sign in to comment.