Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Commit b7f84e1

Browse files
committed
Update the name of the output for the step: Install Helm for client
1 parent 41af60f commit b7f84e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/bikes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@master
1515

16-
- uses: azure/docker-login@releases/v1
16+
- uses: azure/docker-login@v1
1717
with:
1818
login-server: ${{ secrets.CONTAINER_REGISTRY }}
1919
username: ${{ secrets.REGISTRY_USERNAME }}
@@ -72,19 +72,19 @@ jobs:
7272
exit 1
7373
elif [ "$clientversion" == "$serverversion" ]; then
7474
echo The client and server Helm Versions are equal
75-
echo ::set-output name=result::
75+
echo ::set-output name=helm::helm
7676
else
7777
tmp_dir=$(mktemp -d)
7878
export DESIRED_VERSION=$serverversion HELM_INSTALL_DIR=$tmp_dir
7979
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > get_helm.sh
8080
chmod 700 get_helm.sh
8181
./get_helm.sh
82-
echo ::set-output name=install_location::$tmp_dir/
82+
echo ::set-output name=helm::$tmp_dir/helm
8383
fi
8484
8585
- name: Helm Upgrade PR
8686
run: |
87-
${{steps.install-helm-client.outputs.install_location}}helm upgrade \
87+
${{steps.install-helm-client.outputs.helm}} upgrade \
8888
--install ${{steps.generate-release-name.outputs.result}} samples/BikeSharingApp/Bikes/charts/bikes \
8989
--namespace ${{steps.generate-child-space-name.outputs.result}} \
9090
--set image.repository=${{ secrets.CONTAINER_REGISTRY }}/bikes \

0 commit comments

Comments
 (0)