Skip to content

Commit

Permalink
ci: pass booleans to upgrade action script
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivanveen committed Dec 17, 2024
1 parent a0f76cb commit 446332e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
uses: ./.github/workflows/upgrade.yml
secrets: inherit
with:
update-deps: ${{ github.event.inputs.update-deps }}
create-commit: ${{ github.event.inputs.create-commit }}
update-deps: ${{ fromJSON(github.event.inputs.update-deps) }}
create-commit: ${{ fromJSON(github.event.inputs.create-commit) }}

test:
needs: upgrade
Expand Down

0 comments on commit 446332e

Please sign in to comment.