Skip to content

Commit

Permalink
fix: correct ci parameter inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Oct 2, 2024
1 parent e0f3035 commit d31ba55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
uses: google-github-actions/auth@v2
with:
access_token_scopes: 'email, openid, https://www.googleapis.com/auth/cloud-platform, https://www.googleapis.com/auth/firebase'
workload_identity_provider: ${{ inputs.identity-provider }}
service_account: ${{ inputs.service-account-email }}
workload_identity_provider: ${{ secrets.IDENTITY_PROVIDER }}
service_account: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
create_credentials_file: true
- name: 🚀 Deploy service
uses: google-github-actions/deploy-cloud-functions@v3
Expand Down Expand Up @@ -113,8 +113,8 @@ jobs:
uses: google-github-actions/auth@v2
with:
access_token_scopes: 'email, openid, https://www.googleapis.com/auth/cloud-platform, https://www.googleapis.com/auth/firebase'
workload_identity_provider: ${{ inputs.identity-provider }}
service_account: ${{ inputs.service-account-email }}
workload_identity_provider: ${{ secrets.IDENTITY_PROVIDER }}
service_account: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
create_credentials_file: true
- name: 🚀 Deploy service
uses: google-github-actions/deploy-cloud-functions@v3
Expand Down

0 comments on commit d31ba55

Please sign in to comment.