Skip to content

Commit

Permalink
fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
xgui3783 committed Oct 18, 2024
1 parent bb28558 commit 9af06a4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-server-helm-v4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ jobs:
secrets: ${{ secrets.KUBECONFIG }}
- name: 'Get status'
run: |
set -e
helm status ${{ inputs.DEPLOYMENT_NAME }}
HELM_STATUS=$(echo $?)
HELM_STATUS=$?
echo "HELM_STATUS: $HELM_STATUS"
echo "HELM_STATUS=$HELM_STATUS" >> $GITHUB_ENV
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy-worker-helm-v4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ jobs:
secrets: ${{ secrets.KUBECONFIG }}
- name: 'Get status'
run: |
set -e
helm status ${{ inputs.DEPLOYMENT_NAME }}
HELM_STATUS=$(echo $?)
HELM_STATUS=$?
echo "HELM_STATUS: $HELM_STATUS"
echo "HELM_STATUS=$HELM_STATUS" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .helm/siibra-api-v4-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.3.21-rc4"
appVersion: "0.3.21-rc8"
2 changes: 1 addition & 1 deletion .helm/siibra-api-v4-worker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.3.21-rc4"
appVersion: "0.3.21-rc8"

0 comments on commit 9af06a4

Please sign in to comment.