Skip to content

Commit

Permalink
fix: remove quotes from workflow input values
Browse files Browse the repository at this point in the history
fix: remove quotes from workflow input values
  • Loading branch information
rjan90 committed Jan 10, 2025
1 parent f422705 commit d396429
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/create-release-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ jobs:
run: |
go run cmd/release/main.go create-issue \
--create-on-github true \
--type "${{ github.event.inputs.type }}" \
--tag "${{ github.event.inputs.tag }}" \
--level "${{ github.event.inputs.level }}" \
--network-upgrade "${{ github.event.inputs.network-upgrade }}" \
--discussion-link "${{ github.event.inputs.discussion-link }}" \
--changelog-link "${{ github.event.inputs.changelog-link }}" \
--rc1-date "${{ github.event.inputs.rc1-date }}" \
--stable-date "${{ github.event.inputs.stable-date }}" \
--repo "filecoin-project/lotus"
--type ${{ github.event.inputs.type }} \
--tag ${{ github.event.inputs.tag }} \
--level ${{ github.event.inputs.level }} \
--network-upgrade ${{ github.event.inputs.network-upgrade }} \
--discussion-link ${{ github.event.inputs.discussion-link }} \
--changelog-link ${{ github.event.inputs.changelog-link }} \
--rc1-date ${{ github.event.inputs.rc1-date }} \
--stable-date ${{ github.event.inputs.stable-date }} \
--repo filecoin-project/lotus

0 comments on commit d396429

Please sign in to comment.