Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
branches:
- main
workflow_dispatch: # manual trigger to (re)publish the current package versions

permissions:
contents: write
Expand All @@ -24,7 +25,7 @@ jobs:

publish:
needs: release-please
if: ${{ needs.release-please.outputs.paths_released != '[]' }}
if: ${{ needs.release-please.outputs.paths_released != '[]' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@10.19.0",
"packageManager": "pnpm@11.10.0",
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" run build",
"typecheck": "pnpm --filter @ambosstech/core run build && pnpm -r --filter \"./packages/*\" run typecheck",
Expand Down
2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
packages:
- 'packages/*'
allowBuilds:
esbuild: true
Loading