We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fcc266 commit 47ba838Copy full SHA for 47ba838
1 file changed
.github/workflows/main.yaml
@@ -51,6 +51,12 @@ jobs:
51
chmod +x install.sh
52
./install.sh --accept-all-defaults
53
echo "$HOME/bin" >> $GITHUB_PATH
54
+ - name: Set up OCI credentials
55
+ run: |
56
+ mkdir -p ~/.oci
57
+ echo "${{ secrets.OCI_CONFIG }}" | base64 -d > ~/.oci/config
58
+ echo "${{ secrets.OCI_API_KEY }}" | base64 -d > ~/.oci/oci_api_key.pem
59
+ chmod 600 ~/.oci/oci_api_key.pem
60
- name: Install helm
61
run: curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 && chmod 700 get_helm.sh && ./get_helm.sh
62
- name: Update deployment
0 commit comments