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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run build
run: pnpm build

- name: Configure Git
run: |
git config --local user.email "action@github.com"
Expand Down Expand Up @@ -110,6 +107,9 @@ jobs:
# Push changes and tags
git push origin ${{ github.event.inputs.branch }} --tags

- name: Run build
run: pnpm build

- name: Publish packages (dry run)
if: ${{ github.event.inputs.dry_run == 'true' }}
run: |
Expand Down
1 change: 0 additions & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"scripts": {
"build": "tsdown",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"lint": "oxlint --type-aware",
"typecheck": "tsgo --noEmit",
"test": "vitest run"
Expand Down
Loading