Skip to content

Commit

Permalink
Fix env vars/secrets for golden image IDs comp workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mtweeman committed Aug 25, 2024
1 parent 98458b8 commit a21101b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/golden-image-ids-comparison.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
steps:
- name: Get images list
env:
OCI_CLI_TENANCY: ${{ vars.OCI_TENANCY_OCID }}
OCI_CLI_USER: ${{ vars.OCI_USER_OCID }}
OCI_CLI_KEY_CONTENT: ${{ secrets.OCI_PRIVATE_KEY }}
OCI_CLI_FINGERPRINT: ${{ vars.OCI_FINGERPRINT }}
OCI_CLI_REGION: ${{ vars.OCI_REGION }}
OCI_CLI_TENANCY: ${{ vars.TF_VAR_TENANCY_OCID }}
OCI_CLI_USER: ${{ vars.TF_VAR_USER_OCID }}
OCI_CLI_KEY_CONTENT: ${{ secrets.TF_VAR_PRIVATE_KEY }}
OCI_CLI_FINGERPRINT: ${{ vars.TF_VAR_FINGERPRINT }}
uses: oracle-actions/[email protected]
id: images-list
with:
Expand Down

0 comments on commit a21101b

Please sign in to comment.