From 2771cc0fac359e60f0fac055cb52f859f57a002e Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Thu, 9 Dec 2021 13:22:57 -0500 Subject: [PATCH] try to get back to how it was working before --- .github/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index ec7f2ee..6ed56b5 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -30,15 +30,15 @@ jobs: project_id: kontaindotme # Setup OIDC->SA auth - - uses: google-github-actions/auth@v0.4.2 + - uses: google-github-actions/auth@v0.3.0 id: auth with: workload_identity_provider: 'projects/7577580991/locations/global/workloadIdentityPools/gha-pool/providers/gha-provider' service_account: 'gha-deployer@kontaindotme.iam.gserviceaccount.com' create_credentials_file: true - run: | - gcloud auth configure-docker gcloud auth login --brief --cred-file="${{ steps.auth.outputs.credentials_file_path }}" + gcloud auth print-access-token | ko login gcr.io --username=oauth2accesstoken --password-stdin # Checkout code. - uses: actions/checkout@v2