Skip to content

Commit a6d9a6c

Browse files
committed
test
1 parent 47ba838 commit a6d9a6c

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/main.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ jobs:
5353
echo "$HOME/bin" >> $GITHUB_PATH
5454
- name: Set up OCI credentials
5555
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
56+
export HOME=/home/runner
57+
mkdir -p $HOME/.oci
58+
echo "${{ secrets.OCI_CONFIG }}" | base64 -d > $HOME/.oci/config
59+
echo "${{ secrets.OCI_API_KEY }}" | base64 -d > $HOME/.oci/oci_api_key.pem
60+
chmod 600 $HOME/.oci/oci_api_key.pem
6061
- name: Install helm
6162
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
6263
- name: Update deployment

0 commit comments

Comments
 (0)