chore: Replace backticks with single quotes in README (#65)

This commit is contained in:
Nozomu Ohki 2021-11-30 08:52:40 +09:00 committed by GitHub
parent e805d1d054
commit 6dbf4e537f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,7 +199,7 @@ jobs:
steps: steps:
- id: 'auth' - id: 'auth'
name: 'Authenticate to Google Cloud' name: 'Authenticate to Google Cloud'
uses: `google-github-actions/auth@v0.4.1' uses: 'google-github-actions/auth@v0.4.1'
with: with:
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
service_account: 'my-service-account@my-project.iam.gserviceaccount.com' service_account: 'my-service-account@my-project.iam.gserviceaccount.com'
@ -225,7 +225,7 @@ jobs:
steps: steps:
- id: 'auth' - id: 'auth'
name: 'Authenticate to Google Cloud' name: 'Authenticate to Google Cloud'
uses: `google-github-actions/auth@v0.4.1' uses: 'google-github-actions/auth@v0.4.1'
with: with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}' credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
``` ```