Skip to content

Commit

Permalink
change casing on action secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwashington committed Jun 17, 2024
1 parent 6bffcde commit cd6b0b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/.github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ jobs:
uses: 'google-github-actions/auth@v2'
with:
token_format: 'access_token'
workload_identity_provider: ${{ secrets.WorkloadIdentityProvider }}
service_account: ${{ secrets.IntegrationTestServiceAccount }}
project_id: ${{ secrets.IntegrationTestProjectId }}
workload_identity_provider: '${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}'
service_account: '${{ secrets.INTEGRATION_TEST_SERVICE_ACCOUNT }}'
project_id: '${{ secrets.INTEGRATION_TEST_PROJECT_ID }}'
- name: 'Configure gcloud'
run: tests/integration/configure-gcloud.sh ${{ secrets.IntegrationTestProjectId }}
run: tests/integration/configure-gcloud.sh ${{ secrets.INTEGRATION_TEST_PROJECT_ID }}
- name: 'Install AMO locally'
run: |
pip install .
Expand All @@ -82,6 +82,6 @@ jobs:
- name: Run integration tests
working-directory: tests/integration
env:
PROJECT_ID: ${{ secrets.IntegrationTestProjectId }}
PROJECT_ID: ${{ secrets.INTEGRATION_TEST_PROJECT_ID }}
run: |
pytest --cov=AutoMLOps=

0 comments on commit cd6b0b7

Please sign in to comment.