Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Jan 6, 2024
1 parent c7a7406 commit 18ad6fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/prepare-integration-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
echo ${GCP_CREDENTIALS} | base64 --decode > /tmp/gcp-credentials.json
env:
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
GCP_CREDENTIALS: ${{ inputs.secrets.GCP_CREDENTIALS }}

- name: (PREPARE) Setup OS SSH key file
shell: bash
Expand All @@ -46,7 +46,7 @@ runs:
echo ${OS_SSH_KEY_FILE} | base64 --decode > /tmp/os-ssh-key-file
chmod 400 /tmp/os-ssh-key-file
env:
OS_SSH_KEY_FILE: ${{ secrets.OS_SSH_KEY_FILE }}
OS_SSH_KEY_FILE: ${{ inputs.secrets.OS_SSH_KEY_FILE }}

- name: (PREPARE) Setup OS credentials
shell: bash
Expand Down Expand Up @@ -74,8 +74,8 @@ runs:
chmod 755 /tmp/os-credentials.sh
env:
OS_APPLICATION_CREDENTIAL_ID: ${{ secrets.OS_APPLICATION_CREDENTIAL_ID }}
OS_APPLICATION_CREDENTIAL_SECRET: ${{ secrets.OS_APPLICATION_CREDENTIAL_SECRET }}
OS_APPLICATION_CREDENTIAL_ID: ${{ inputs.secrets.OS_APPLICATION_CREDENTIAL_ID }}
OS_APPLICATION_CREDENTIAL_SECRET: ${{ inputs.secrets.OS_APPLICATION_CREDENTIAL_SECRET }}

- name: (PREPARE) Setup Python
uses: actions/setup-python@v4
Expand Down

0 comments on commit 18ad6fe

Please sign in to comment.