Giter VIP home page Giter VIP logo

Comments (4)

sethvargo avatar sethvargo commented on July 4, 2024 2

Okay, so I figured out what's going on here. auth sets an environment variable which takes precedence over the logic for how Cloud Run uses gcloud. The fix is to use the --project flag instead. I submitted #278.

from deploy-cloudrun.

sethvargo avatar sethvargo commented on July 4, 2024

Can you please share your complete action.yml file and any output. If the repo is public, can you please link to the failed run?

from deploy-cloudrun.

knowhoper avatar knowhoper commented on July 4, 2024

Done!

from deploy-cloudrun.

justinkwanlee avatar justinkwanlee commented on July 4, 2024

I am also experiencing this issue, tried with both 0.6.0 and 0.7.0. The project_id is ignored and tries to deploy the Cloud Run service in the project of the service account instead of the one I specify

Unlike the poster above, I couldn't downgrade to 0.3.0

name: Build, Publish and Deploy to Cloud Run

on:
  push:
    branches:
      - master
  pull_request:
    branches: 
      - master      

env:  
  GCP_CLOUD_RUN_SERVICE: <my-cloud-run-service-name>
  GCP_REGION: <my-region>
  GCP_ARTIFACT_REGISTRY_REPOSITORY: <my-registry-repo>
  GCP_ARTIFACT_REGISTRY_IMAGE: <my-registry-image>
  GCP_BUILD_TOOLS_PROJECT_ID: ${{ secrets.GCP_BUILD_TOOLS_PROJECT_ID }}
  GCP_CLOUD_RUN_PROJECT_ID: ${{ secrets.GCP_CLOUD_RUN_PROJECT_ID }}

permissions:
  contents: "read"
  id-token: "write"

jobs:
  build-publish:
    name: Build & Publish
    runs-on: ubuntu-latest    
    steps:
      ....

  deploy:
    name: Deploy
    runs-on: ubuntu-latest    
    needs: build-publish
    steps:
      - id: "auth"
        name: "Authenticate to Google Cloud"
        uses: "google-github-actions/auth@v0"
        with:
          workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
          service_account: ${{ secrets.GCP_SERVICE_ACCOUNT_EMAIL }}
          token_format: "access_token"    
      # Deploy the Docker image to Cloud Run
      - name: Deploy to Cloud Run
        id: deploy
        uses: google-github-actions/[email protected]
        with:
          service: ${{ env.GCP_CLOUD_RUN_SERVICE }}
          image: "${{ env.GCP_REGION }}-docker.pkg.dev/${{ env.GCP_BUILD_TOOLS_PROJECT_ID }}/${{ env.GCP_ARTIFACT_REGISTRY_REPOSITORY }}/${{ env.GCP_ARTIFACT_REGISTRY_IMAGE }}:${{ github.sha }}"
          region: ${{ env.GCP_REGION }}
          project_id: ${{ env.GCP_CLOUD_RUN_PROJECT_ID }}
      - name: Show Output
        run: echo ${{ steps.deploy.outputs.url }}

from deploy-cloudrun.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.