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
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name: Release
on:
push:
branches: [master]
workflow_dispatch:
inputs:
force:
description: Publish even though the tag for master's version already exists
type: boolean
default: false

permissions:
id-token: write
Expand All @@ -27,6 +33,6 @@ jobs:
- run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: bun scripts/release.ts publish
- run: bun scripts/release.ts publish ${{ inputs.force && '--force' || '' }}
env:
GH_TOKEN: ${{ github.token }}
2 changes: 1 addition & 1 deletion .oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"correctness": "error"
},
"ignorePatterns": [
"**/lib/**",
"packages/*/lib/**",
"**/node_modules/**",
"**/coverage/**",
"**/docs_build/**",
Expand Down
Loading
Loading