Skip to content

Commit

Permalink
adjust parameter transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoeni committed Jun 4, 2024
1 parent 5995f1f commit bd839d9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ on:
artifact:
description: Add artifacts to the release. All files from the provided folder(s) are added to the release. Folders or files are seperated by a single whitespace (e.g. file.txt folder/). **Do not use docs/**.
type: string
default: ''
required: false
force:
description: "If force is true, already published releases can be overwritten. Caution: This action deletes already published releases and can **not** be undone!"
Expand All @@ -39,7 +38,7 @@ jobs:
uses: swissfintechinnovations/.github/.github/workflows/reusable-release-workflow.yaml@main
with:
version: ${{ github.event.inputs.version }}
draft: ${{ fromJSON(github.event.inputs.draft) }}
artifact: ${{ fromJSON(github.event.inputs.artifact) }}
force: ${{ fromJSON(github.event.inputs.force) }}
draft: ${{ fromJSON(github.event.inputs.draft) }} # convert string to boolean
artifact: ${{ github.event.inputs.artifact }}
force: ${{ fromJSON(github.event.inputs.force) }} # convert string to boolean
secrets: inherit

0 comments on commit bd839d9

Please sign in to comment.