Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

chore: added missing variable #307

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/actions/deploy_to_kubernetes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ runs:
DOCKERHUB_ORGANISATION: ${{ inputs.DOCKERHUB_ORGANISATION }}
CA_CRT: ${{ inputs.CA_CRT }}
APP_NAME: deriv-com-api
K8S_VERSION: {{ inputs.K8S_VERSION }}
run: |
git clone https://github.com/binary-com/devops-ci-scripts
cd devops-ci-scripts/k8s-build_tools
echo $CA_CRT | base64 --decode > ca.crt
export CA="ca.crt"
./release.sh ${APP_NAME} $K8S_VERSION
./release.sh $APP_NAME $K8S_VERSION
shell: bash