Skip to content

Commit

Permalink
Fix else if
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpittwood committed May 9, 2024
1 parent 64cc0f1 commit 3b4ad42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ jobs:
suffix="_VERSION"
if [[ "${{ inputs.type }}" == "preview" ]]; then
suffix="_PREVIEW_VERSION"
else if [[ "${{ inputs.type }}" == "daily" ]]; then
elif [[ "${{ inputs.type }}" == "daily" ]]; then
suffix="_DAILY_VERSION"
fi
product="${{ inputs.product }}"
if [[ "$product" == "connect" ]] || [[ "$product" == "connect-content-init" ]] || [[ "$product" == "content-images" ]]; then
product="CONNECT"
else if [[ "$product" == "package-manager" ]]; then
elif [[ "$product" == "package-manager" ]]; then
product="PACKAGE_MANAGER"
else
product="WORKBENCH"
Expand Down

0 comments on commit 3b4ad42

Please sign in to comment.