Skip to content

Commit

Permalink
enable auto-deplay, fix work without event.inputs (bool interpretat…
Browse files Browse the repository at this point in the history
…ion)
  • Loading branch information
boozook committed Sep 13, 2023
1 parent 123456c commit b6132a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ on:
default: true
type: boolean
required: false
# push:
# branches: [main, master, "**"]
push:
branches: [main, master]

schedule:
- cron: "0 0 * * 1"
Expand Down Expand Up @@ -52,6 +52,6 @@ jobs:
uses: katyo/publish-crates@v2
with:
dry-run: ${{ github.event.inputs.dry-run == 'true' }}
check-repo: ${{ github.event.inputs.check-repo == 'true' }}
check-repo: ${{ (github.event.inputs && github.event.inputs.check-repo == 'true') || true }}
ignore-unpublished-changes: true
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit b6132a4

Please sign in to comment.