Skip to content

Commit

Permalink
Merge pull request #213 from davseve/internal/ED-11261-one-click-clou…
Browse files Browse the repository at this point in the history
…d-release

Setting an output parameter
  • Loading branch information
davseve authored Aug 7, 2023
2 parents 448eb23 + 8e7d6ca commit e00ab32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/one-click-hosting-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
shell: bash
run: |
# Set the postfix value
if [[ ${{ inputs.CHANNEL }} == 'cloud' && ${{ github.event.inputs.pre_release }} == 'true' ]]; then
POSTFIX=""
if [[ '${{ github.event.inputs.pre_release }}' == 'true' ]]; then
POSTFIX="-test"
else
POSTFIX=""
fi
echo "POSTFIX=${POSTFIX}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit e00ab32

Please sign in to comment.