Skip to content

Commit

Permalink
add quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell committed Nov 2, 2023
1 parent ebd1863 commit 9a3c52c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3438,7 +3438,7 @@ jobs:
set +e
echo ${{ secrets.UPGRADE_TO_REPLICATED_SDK_LICENSE }} | base64 -d > license.yaml
LICENSE_ID=$(grep -oP 'licenseID:\s*\K\w+' license.yaml)
LICENSE_ID="$(grep -oP 'licenseID:\s*\K\w+' license.yaml)"
echo "license-id=$LICENSE_ID" >> $GITHUB_OUTPUT
./bin/kots \
Expand Down Expand Up @@ -3476,7 +3476,7 @@ jobs:
done
# upgrade the app to the new version
./bin/kots upstream upgrade $APP_SLUG -n "$KOTS_NAMESPACE" --deploy
./bin/kots upstream upgrade "$APP_SLUG" -n "$KOTS_NAMESPACE" --deploy
sleep 5
# wait for the app to be ready again
Expand Down Expand Up @@ -3520,7 +3520,7 @@ jobs:
set +e
echo ${{ secrets.REPLICATED_SDK_SUBCHART_NATIVE_HELM_V1 }} | base64 -d > license.yaml
LICENSE_ID=$(grep -oP 'licenseID:\s*\K\w+' license.yaml)
LICENSE_ID="$(grep -oP 'licenseID:\s*\K\w+' license.yaml)"
echo "license-id=$LICENSE_ID" >> $GITHUB_OUTPUT
./bin/kots \
Expand Down Expand Up @@ -3583,7 +3583,7 @@ jobs:
set +e
echo ${{ secrets.REPLICATED_SDK_SUBCHART_REPLICATED_HELM }} | base64 -d > license.yaml
LICENSE_ID=$(grep -oP 'licenseID:\s*\K\w+' license.yaml)
LICENSE_ID="$(grep -oP 'licenseID:\s*\K\w+' license.yaml)"
echo "license-id=$LICENSE_ID" >> $GITHUB_OUTPUT
./bin/kots \
Expand Down

0 comments on commit 9a3c52c

Please sign in to comment.