google-github-actions / deploy-cloudrun

A GitHub Action for deploying services to Google Cloud Run.
https://cloud.google.com/run
Apache License 2.0
463 stars 115 forks source link

Timeout is not respected by Cloud Build #375

Closed ciriousjoker closed 2 years ago

ciriousjoker commented 2 years ago

TL;DR

Expected behavior

Cloud Build should use 30 minutes

Observed behavior

Cloud Build used 10 minutes. (default)

Action YAML

name: Deploy frontend to Cloud Run

on: workflow_dispatch

env:
  PROJECT_ID: some-project
  SERVICE: some-service
  REGION: europe-west3

jobs:
  deploy:
    # Add 'id-token' with the intended permissions for workload identity federation
    permissions:
      contents: "read"
      id-token: "write"

    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          # https://github.com/MansaGroup/nrwl-nx-action/issues/75
          fetch-depth: 2

      - name: Google Auth
        id: auth
        uses: "google-github-actions/auth@v0"
        with:
          workload_identity_provider: "${{ secrets.WIF_PROVIDER }}"
          service_account: "${{ secrets.WIF_SERVICE_ACCOUNT }}"

      - name: Deploy to Cloud Run
        id: deploy
        uses: google-github-actions/deploy-cloudrun@v0
        with:
          service: ${{ env.SERVICE }}
          region: ${{ env.REGION }}
          # NOTE: If required, update to the appropriate source folder
          source: ./

          # The deployment process takes a bit longer than the default timeout of 10 minutes,
          # so we increase it here to be on the safe side.
          # --> I also tried "timeout: 30m" here just in case, I'm desperate at this point
          timeout: "30m"

      # If required, use the Cloud Run url output in later steps
      - name: Show Output
        run: echo ${{ steps.deploy.outputs.url }}

Log output

(collapsed because really long!) ```text 2022-07-30T05:35:11.3917313Z Requested labels: ubuntu-latest 2022-07-30T05:35:11.3917356Z Job defined at: ... 2022-07-30T05:35:11.3917378Z Waiting for a runner to pick up this job... 2022-07-30T05:35:12.0042467Z Job is waiting for a hosted runner to come online. 2022-07-30T05:35:15.7142237Z Job is about to start running on the hosted runner: Hosted Agent (hosted) 2022-07-30T05:35:20.2759397Z Current runner version: '2.294.0' 2022-07-30T05:35:20.2797739Z ##[group]Operating System 2022-07-30T05:35:20.2798505Z Ubuntu 2022-07-30T05:35:20.2798884Z 20.04.4 2022-07-30T05:35:20.2799301Z LTS 2022-07-30T05:35:20.2799671Z ##[endgroup] 2022-07-30T05:35:20.2800089Z ##[group]Virtual Environment 2022-07-30T05:35:20.2800517Z Environment: ubuntu-20.04 2022-07-30T05:35:20.2800983Z Version: 20220724.1 2022-07-30T05:35:20.2801641Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20220724.1/images/linux/Ubuntu2004-Readme.md 2022-07-30T05:35:20.2802484Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20220724.1 2022-07-30T05:35:20.2803068Z ##[endgroup] 2022-07-30T05:35:20.2803575Z ##[group]Virtual Environment Provisioner 2022-07-30T05:35:20.2804032Z 1.0.0.0-main-20220701-2 2022-07-30T05:35:20.2804367Z ##[endgroup] 2022-07-30T05:35:20.2805214Z ##[group]GITHUB_TOKEN Permissions 2022-07-30T05:35:20.2805917Z Contents: read 2022-07-30T05:35:20.2806562Z Metadata: read 2022-07-30T05:35:20.2807044Z ##[endgroup] 2022-07-30T05:35:20.2811917Z Secret source: Actions 2022-07-30T05:35:20.2812901Z Prepare workflow directory 2022-07-30T05:35:20.4231785Z Prepare all required actions 2022-07-30T05:35:20.4560533Z Getting action download info 2022-07-30T05:35:20.6907609Z Download action repository 'actions/checkout@v2' (SHA:7884fcad6b5d53d10323aee724dc68d8b9096a2e) 2022-07-30T05:35:21.4353961Z Download action repository 'google-github-actions/auth@v0' (SHA:ceee102ec2387dd9e844e01b530ccd4ec87ce955) 2022-07-30T05:35:21.9097789Z Download action repository 'google-github-actions/deploy-cloudrun@v0' (SHA:530b4b6c6355648c5ef3ec32a4744d4e0659a016) 2022-07-30T05:35:22.8026063Z ##[group]Run actions/checkout@v2 2022-07-30T05:35:22.8026473Z with: 2022-07-30T05:35:22.8026760Z fetch-depth: 2 2022-07-30T05:35:22.8027043Z repository: ... 2022-07-30T05:35:22.8027698Z token: *** 2022-07-30T05:35:22.8027958Z ssh-strict: true 2022-07-30T05:35:22.8028252Z persist-credentials: true 2022-07-30T05:35:22.8028551Z clean: true 2022-07-30T05:35:22.8028798Z lfs: false 2022-07-30T05:35:22.8029047Z submodules: false 2022-07-30T05:35:22.8029329Z set-safe-directory: true 2022-07-30T05:35:22.8029613Z env: 2022-07-30T05:35:22.8029908Z PROJECT_ID: some-project-id 2022-07-30T05:35:22.8030226Z SERVICE: some-service 2022-07-30T05:35:22.8030502Z REGION: europe-west3 2022-07-30T05:35:22.8030781Z ##[endgroup] 2022-07-30T05:35:23.1856049Z Syncing repository: ... 2022-07-30T05:35:23.1858178Z ##[group]Getting Git version info 2022-07-30T05:35:23.1858910Z Working directory is '/home/runner/work/...' 2022-07-30T05:35:23.1859671Z [command]/usr/bin/git version 2022-07-30T05:35:23.2050140Z git version 2.37.1 2022-07-30T05:35:23.2077538Z ##[endgroup] 2022-07-30T05:35:23.2100654Z Temporarily overriding HOME='/home/runner/work/_temp/d9607641-2f30-4e9a-af4d-85a67f0af1f9' before making global git config changes 2022-07-30T05:35:23.2101262Z Adding repository directory to the temporary git global config as a safe directory 2022-07-30T05:35:23.2101924Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/... 2022-07-30T05:35:23.2156065Z Deleting the contents of '/home/runner/work/...' 2022-07-30T05:35:23.2161645Z ##[group]Initializing the repository 2022-07-30T05:35:23.2166127Z [command]/usr/bin/git init /home/runner/work/... 2022-07-30T05:35:23.2305539Z hint: Using 'master' as the name for the initial branch. This default branch name 2022-07-30T05:35:23.2306194Z hint: is subject to change. To configure the initial branch name to use in all 2022-07-30T05:35:23.2306681Z hint: of your new repositories, which will suppress this warning, call: 2022-07-30T05:35:23.2307180Z hint: 2022-07-30T05:35:23.2308874Z hint: git config --global init.defaultBranch 2022-07-30T05:35:23.2309415Z hint: 2022-07-30T05:35:23.2310492Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2022-07-30T05:35:23.2311727Z hint: 'development'. The just-created branch can be renamed via this command: 2022-07-30T05:35:23.2312223Z hint: 2022-07-30T05:35:23.2313188Z hint: git branch -m 2022-07-30T05:35:23.2332464Z Initialized empty Git repository in /home/runner/work/.../.git/ 2022-07-30T05:35:23.2397810Z [command]/usr/bin/git remote add origin https://github.com/... 2022-07-30T05:35:23.2535559Z ##[endgroup] 2022-07-30T05:35:23.2536169Z ##[group]Disabling automatic garbage collection 2022-07-30T05:35:23.2536938Z [command]/usr/bin/git config --local gc.auto 0 2022-07-30T05:35:23.2537443Z ##[endgroup] 2022-07-30T05:35:23.2538311Z ##[group]Setting up auth 2022-07-30T05:35:23.2538851Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-07-30T05:35:23.2579674Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-07-30T05:35:23.3117632Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-07-30T05:35:23.3151653Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2022-07-30T05:35:23.3470647Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2022-07-30T05:35:23.3513196Z ##[endgroup] 2022-07-30T05:35:23.3514399Z ##[group]Fetching the repository 2022-07-30T05:35:23.3522242Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=2 origin +b53e99004faeb24ccb3e74d94e958ed443bfdc90:refs/remotes/origin/40-new-website 2022-07-30T05:35:23.7690176Z remote: Enumerating objects: 276, done. 2022-07-30T05:35:23.7707963Z remote: Counting objects: 0% (1/276) 2022-07-30T05:35:23.7708957Z remote: Counting objects: 1% (3/276) 2022-07-30T05:35:23.7709545Z remote: Counting objects: 2% (6/276) 2022-07-30T05:35:23.7710325Z remote: Counting objects: 3% (9/276) 2022-07-30T05:35:23.7710847Z remote: Counting objects: 4% (12/276) 2022-07-30T05:35:23.7711653Z remote: Counting objects: 5% (14/276) 2022-07-30T05:35:23.7712178Z remote: Counting objects: 6% (17/276) 2022-07-30T05:35:23.7713179Z remote: Counting objects: 7% (20/276) 2022-07-30T05:35:23.7713725Z remote: Counting objects: 8% (23/276) 2022-07-30T05:35:23.7714496Z remote: Counting objects: 9% (25/276) 2022-07-30T05:35:23.7715025Z remote: Counting objects: 10% (28/276) 2022-07-30T05:35:23.7715785Z remote: Counting objects: 11% (31/276) 2022-07-30T05:35:23.7716306Z remote: Counting objects: 12% (34/276) 2022-07-30T05:35:23.7717052Z remote: Counting objects: 13% (36/276) 2022-07-30T05:35:23.7717568Z remote: Counting objects: 14% (39/276) 2022-07-30T05:35:23.7718875Z remote: Counting objects: 15% (42/276) 2022-07-30T05:35:23.7719191Z remote: Counting objects: 16% (45/276) 2022-07-30T05:35:23.7719900Z remote: Counting objects: 17% (47/276) 2022-07-30T05:35:23.7720221Z remote: Counting objects: 18% (50/276) 2022-07-30T05:35:23.7720544Z remote: Counting objects: 19% (53/276) 2022-07-30T05:35:23.7721119Z remote: Counting objects: 20% (56/276) 2022-07-30T05:35:23.7721446Z remote: Counting objects: 21% (58/276) 2022-07-30T05:35:23.7721765Z remote: Counting objects: 22% (61/276) 2022-07-30T05:35:23.7722076Z remote: Counting objects: 23% (64/276) 2022-07-30T05:35:23.7722396Z remote: Counting objects: 24% (67/276) 2022-07-30T05:35:23.7722718Z remote: Counting objects: 25% (69/276) 2022-07-30T05:35:23.7723039Z remote: Counting objects: 26% (72/276) 2022-07-30T05:35:23.7723354Z remote: Counting objects: 27% (75/276) 2022-07-30T05:35:23.7723959Z remote: Counting objects: 28% (78/276) 2022-07-30T05:35:23.7724283Z remote: Counting objects: 29% (81/276) 2022-07-30T05:35:23.7725191Z remote: Counting objects: 30% (83/276) 2022-07-30T05:35:23.7725517Z remote: Counting objects: 31% (86/276) 2022-07-30T05:35:23.7726244Z remote: Counting objects: 32% (89/276) 2022-07-30T05:35:23.7726808Z remote: Counting objects: 33% (92/276) 2022-07-30T05:35:23.7727130Z remote: Counting objects: 34% (94/276) 2022-07-30T05:35:23.7727451Z remote: Counting objects: 35% (97/276) 2022-07-30T05:35:23.7727776Z remote: Counting objects: 36% (100/276) 2022-07-30T05:35:23.7728565Z remote: Counting objects: 37% (103/276) 2022-07-30T05:35:23.7728887Z remote: Counting objects: 38% (105/276) 2022-07-30T05:35:23.7729609Z remote: Counting objects: 39% (108/276) 2022-07-30T05:35:23.7730131Z remote: Counting objects: 40% (111/276) 2022-07-30T05:35:23.7730933Z remote: Counting objects: 41% (114/276) 2022-07-30T05:35:23.7731646Z remote: Counting objects: 42% (116/276) 2022-07-30T05:35:23.7731983Z remote: Counting objects: 43% (119/276) 2022-07-30T05:35:23.7732313Z remote: Counting objects: 44% (122/276) 2022-07-30T05:35:23.7733171Z remote: Counting objects: 45% (125/276) 2022-07-30T05:35:23.7733876Z remote: Counting objects: 46% (127/276) 2022-07-30T05:35:23.7734204Z remote: Counting objects: 47% (130/276) 2022-07-30T05:35:23.7734530Z remote: Counting objects: 48% (133/276) 2022-07-30T05:35:23.7735245Z remote: Counting objects: 49% (136/276) 2022-07-30T05:35:23.7736148Z remote: Counting objects: 50% (138/276) 2022-07-30T05:35:23.7736484Z remote: Counting objects: 51% (141/276) 2022-07-30T05:35:23.7736787Z remote: Counting objects: 52% (144/276) 2022-07-30T05:35:23.7737615Z remote: Counting objects: 53% (147/276) 2022-07-30T05:35:23.7738317Z remote: Counting objects: 54% (150/276) 2022-07-30T05:35:23.7738657Z remote: Counting objects: 55% (152/276) 2022-07-30T05:35:23.7738986Z remote: Counting objects: 56% (155/276) 2022-07-30T05:35:23.7739306Z remote: Counting objects: 57% (158/276) 2022-07-30T05:35:23.7740006Z remote: Counting objects: 58% (161/276) 2022-07-30T05:35:23.7740717Z remote: Counting objects: 59% (163/276) 2022-07-30T05:35:23.7741645Z remote: Counting objects: 60% (166/276) 2022-07-30T05:35:23.7741958Z remote: Counting objects: 61% (169/276) 2022-07-30T05:35:23.7742282Z remote: Counting objects: 62% (172/276) 2022-07-30T05:35:23.7742608Z remote: Counting objects: 63% (174/276) 2022-07-30T05:35:23.7742931Z remote: Counting objects: 64% (177/276) 2022-07-30T05:35:23.7743254Z remote: Counting objects: 65% (180/276) 2022-07-30T05:35:23.7743576Z remote: Counting objects: 66% (183/276) 2022-07-30T05:35:23.7743897Z remote: Counting objects: 67% (185/276) 2022-07-30T05:35:23.7744205Z remote: Counting objects: 68% (188/276) 2022-07-30T05:35:23.7744522Z remote: Counting objects: 69% (191/276) 2022-07-30T05:35:23.7744926Z remote: Counting objects: 70% (194/276) 2022-07-30T05:35:23.7745252Z remote: Counting objects: 71% (196/276) 2022-07-30T05:35:23.7745572Z remote: Counting objects: 72% (199/276) 2022-07-30T05:35:23.7745891Z remote: Counting objects: 73% (202/276) 2022-07-30T05:35:23.7746195Z remote: Counting objects: 74% (205/276) 2022-07-30T05:35:23.7746516Z remote: Counting objects: 75% (207/276) 2022-07-30T05:35:23.7746842Z remote: Counting objects: 76% (210/276) 2022-07-30T05:35:23.7747164Z remote: Counting objects: 77% (213/276) 2022-07-30T05:35:23.7747484Z remote: Counting objects: 78% (216/276) 2022-07-30T05:35:23.7747801Z remote: Counting objects: 79% (219/276) 2022-07-30T05:35:23.7748118Z remote: Counting objects: 80% (221/276) 2022-07-30T05:35:23.7748604Z remote: Counting objects: 81% (224/276) 2022-07-30T05:35:23.7748924Z remote: Counting objects: 82% (227/276) 2022-07-30T05:35:23.7749246Z remote: Counting objects: 83% (230/276) 2022-07-30T05:35:23.7749569Z remote: Counting objects: 84% (232/276) 2022-07-30T05:35:23.7749892Z remote: Counting objects: 85% (235/276) 2022-07-30T05:35:23.7750210Z remote: Counting objects: 86% (238/276) 2022-07-30T05:35:23.7750531Z remote: Counting objects: 87% (241/276) 2022-07-30T05:35:23.7750835Z remote: Counting objects: 88% (243/276) 2022-07-30T05:35:23.7751159Z remote: Counting objects: 89% (246/276) 2022-07-30T05:35:23.7751482Z remote: Counting objects: 90% (249/276) 2022-07-30T05:35:23.7751801Z remote: Counting objects: 91% (252/276) 2022-07-30T05:35:23.7752124Z remote: Counting objects: 92% (254/276) 2022-07-30T05:35:23.7752439Z remote: Counting objects: 93% (257/276) 2022-07-30T05:35:23.7752748Z remote: Counting objects: 94% (260/276) 2022-07-30T05:35:23.7753063Z remote: Counting objects: 95% (263/276) 2022-07-30T05:35:23.7753382Z remote: Counting objects: 96% (265/276) 2022-07-30T05:35:23.7753808Z remote: Counting objects: 97% (268/276) 2022-07-30T05:35:23.7754135Z remote: Counting objects: 98% (271/276) 2022-07-30T05:35:23.7754456Z remote: Counting objects: 99% (274/276) 2022-07-30T05:35:23.7776383Z remote: Counting objects: 100% (276/276) 2022-07-30T05:35:23.7776769Z remote: Counting objects: 100% (276/276), done. 2022-07-30T05:35:23.7777337Z remote: Compressing objects: 0% (1/225) 2022-07-30T05:35:23.7777696Z remote: Compressing objects: 1% (3/225) 2022-07-30T05:35:23.7778018Z remote: Compressing objects: 2% (5/225) 2022-07-30T05:35:23.7778358Z remote: Compressing objects: 3% (7/225) 2022-07-30T05:35:23.7778699Z remote: Compressing objects: 4% (9/225) 2022-07-30T05:35:23.7779046Z remote: Compressing objects: 5% (12/225) 2022-07-30T05:35:23.7779390Z remote: Compressing objects: 6% (14/225) 2022-07-30T05:35:23.7779731Z remote: Compressing objects: 7% (16/225) 2022-07-30T05:35:23.7780071Z remote: Compressing objects: 8% (18/225) 2022-07-30T05:35:23.7780393Z remote: Compressing objects: 9% (21/225) 2022-07-30T05:35:23.7780734Z remote: Compressing objects: 10% (23/225) 2022-07-30T05:35:23.7781073Z remote: Compressing objects: 11% (25/225) 2022-07-30T05:35:23.7781407Z remote: Compressing objects: 12% (27/225) 2022-07-30T05:35:23.7781744Z remote: Compressing objects: 13% (30/225) 2022-07-30T05:35:23.7782075Z remote: Compressing objects: 14% (32/225) 2022-07-30T05:35:23.7782391Z remote: Compressing objects: 15% (34/225) 2022-07-30T05:35:23.7782721Z remote: Compressing objects: 16% (36/225) 2022-07-30T05:35:23.7783057Z remote: Compressing objects: 17% (39/225) 2022-07-30T05:35:23.7783398Z remote: Compressing objects: 18% (41/225) 2022-07-30T05:35:23.7783733Z remote: Compressing objects: 19% (43/225) 2022-07-30T05:35:23.7784067Z remote: Compressing objects: 20% (45/225) 2022-07-30T05:35:23.7784398Z remote: Compressing objects: 21% (48/225) 2022-07-30T05:35:23.7784714Z remote: Compressing objects: 22% (50/225) 2022-07-30T05:35:23.7785044Z remote: Compressing objects: 23% (52/225) 2022-07-30T05:35:23.7785379Z remote: Compressing objects: 24% (54/225) 2022-07-30T05:35:23.7785710Z remote: Compressing objects: 25% (57/225) 2022-07-30T05:35:23.7786044Z remote: Compressing objects: 26% (59/225) 2022-07-30T05:35:23.7786375Z remote: Compressing objects: 27% (61/225) 2022-07-30T05:35:23.7786704Z remote: Compressing objects: 28% (63/225) 2022-07-30T05:35:23.7791453Z remote: Compressing objects: 29% (66/225) 2022-07-30T05:35:23.7791812Z remote: Compressing objects: 30% (68/225) 2022-07-30T05:35:23.7792296Z remote: Compressing objects: 31% (70/225) 2022-07-30T05:35:23.7792632Z remote: Compressing objects: 32% (72/225) 2022-07-30T05:35:23.7792967Z remote: Compressing objects: 33% (75/225) 2022-07-30T05:35:23.7793304Z remote: Compressing objects: 34% (77/225) 2022-07-30T05:35:23.7793638Z remote: Compressing objects: 35% (79/225) 2022-07-30T05:35:23.7793969Z remote: Compressing objects: 36% (81/225) 2022-07-30T05:35:23.7794300Z remote: Compressing objects: 37% (84/225) 2022-07-30T05:35:23.7794616Z remote: Compressing objects: 38% (86/225) 2022-07-30T05:35:23.7794957Z remote: Compressing objects: 39% (88/225) 2022-07-30T05:35:23.7795291Z remote: Compressing objects: 40% (90/225) 2022-07-30T05:35:23.7795626Z remote: Compressing objects: 41% (93/225) 2022-07-30T05:35:23.7795960Z remote: Compressing objects: 42% (95/225) 2022-07-30T05:35:23.7796298Z remote: Compressing objects: 43% (97/225) 2022-07-30T05:35:23.7796631Z remote: Compressing objects: 44% (99/225) 2022-07-30T05:35:23.7796952Z remote: Compressing objects: 45% (102/225) 2022-07-30T05:35:23.7797296Z remote: Compressing objects: 46% (104/225) 2022-07-30T05:35:23.7797636Z remote: Compressing objects: 47% (106/225) 2022-07-30T05:35:23.7797973Z remote: Compressing objects: 48% (108/225) 2022-07-30T05:35:23.7798308Z remote: Compressing objects: 49% (111/225) 2022-07-30T05:35:23.7798641Z remote: Compressing objects: 50% (113/225) 2022-07-30T05:35:23.7805804Z remote: Compressing objects: 51% (115/225) 2022-07-30T05:35:23.7806221Z remote: Compressing objects: 52% (117/225) 2022-07-30T05:35:23.7806567Z remote: Compressing objects: 53% (120/225) 2022-07-30T05:35:23.7806910Z remote: Compressing objects: 54% (122/225) 2022-07-30T05:35:23.7807254Z remote: Compressing objects: 55% (124/225) 2022-07-30T05:35:23.7807603Z remote: Compressing objects: 56% (126/225) 2022-07-30T05:35:23.7807938Z remote: Compressing objects: 57% (129/225) 2022-07-30T05:35:23.7808257Z remote: Compressing objects: 58% (131/225) 2022-07-30T05:35:23.7808594Z remote: Compressing objects: 59% (133/225) 2022-07-30T05:35:23.7808932Z remote: Compressing objects: 60% (135/225) 2022-07-30T05:35:23.7809265Z remote: Compressing objects: 61% (138/225) 2022-07-30T05:35:23.7809599Z remote: Compressing objects: 62% (140/225) 2022-07-30T05:35:23.7809934Z remote: Compressing objects: 63% (142/225) 2022-07-30T05:35:23.7810273Z remote: Compressing objects: 64% (144/225) 2022-07-30T05:35:23.7810590Z remote: Compressing objects: 65% (147/225) 2022-07-30T05:35:23.7811034Z remote: Compressing objects: 66% (149/225) 2022-07-30T05:35:23.7811375Z remote: Compressing objects: 67% (151/225) 2022-07-30T05:35:23.7811717Z remote: Compressing objects: 68% (153/225) 2022-07-30T05:35:23.7812060Z remote: Compressing objects: 69% (156/225) 2022-07-30T05:35:23.7812399Z remote: Compressing objects: 70% (158/225) 2022-07-30T05:35:23.7812896Z remote: Compressing objects: 71% (160/225) 2022-07-30T05:35:23.7813217Z remote: Compressing objects: 72% (162/225) 2022-07-30T05:35:23.7813553Z remote: Compressing objects: 73% (165/225) 2022-07-30T05:35:23.7813893Z remote: Compressing objects: 74% (167/225) 2022-07-30T05:35:23.7814230Z remote: Compressing objects: 75% (169/225) 2022-07-30T05:35:23.7814568Z remote: Compressing objects: 76% (171/225) 2022-07-30T05:35:23.7814907Z remote: Compressing objects: 77% (174/225) 2022-07-30T05:35:23.7815242Z remote: Compressing objects: 78% (176/225) 2022-07-30T05:35:23.7815558Z remote: Compressing objects: 79% (178/225) 2022-07-30T05:35:23.7815894Z remote: Compressing objects: 80% (180/225) 2022-07-30T05:35:23.7816348Z remote: Compressing objects: 81% (183/225) 2022-07-30T05:35:23.7816684Z remote: Compressing objects: 82% (185/225) 2022-07-30T05:35:23.7817023Z remote: Compressing objects: 83% (187/225) 2022-07-30T05:35:23.7817360Z remote: Compressing objects: 84% (189/225) 2022-07-30T05:35:23.7817679Z remote: Compressing objects: 85% (192/225) 2022-07-30T05:35:23.7818016Z remote: Compressing objects: 86% (194/225) 2022-07-30T05:35:23.7818354Z remote: Compressing objects: 87% (196/225) 2022-07-30T05:35:23.7818690Z remote: Compressing objects: 88% (198/225) 2022-07-30T05:35:23.7819031Z remote: Compressing objects: 89% (201/225) 2022-07-30T05:35:23.7819362Z remote: Compressing objects: 90% (203/225) 2022-07-30T05:35:23.7819701Z remote: Compressing objects: 91% (205/225) 2022-07-30T05:35:23.7820017Z remote: Compressing objects: 92% (207/225) 2022-07-30T05:35:23.7820349Z remote: Compressing objects: 93% (210/225) 2022-07-30T05:35:23.7820691Z remote: Compressing objects: 94% (212/225) 2022-07-30T05:35:23.7821022Z remote: Compressing objects: 95% (214/225) 2022-07-30T05:35:23.7821356Z remote: Compressing objects: 96% (216/225) 2022-07-30T05:35:23.7821688Z remote: Compressing objects: 97% (219/225) 2022-07-30T05:35:23.7822021Z remote: Compressing objects: 98% (221/225) 2022-07-30T05:35:23.7822335Z remote: Compressing objects: 99% (223/225) 2022-07-30T05:35:23.7822667Z remote: Compressing objects: 100% (225/225) 2022-07-30T05:35:23.7823020Z remote: Compressing objects: 100% (225/225), done. 2022-07-30T05:35:23.7933558Z Receiving objects: 0% (1/276) 2022-07-30T05:35:23.7934139Z Receiving objects: 1% (3/276) 2022-07-30T05:35:23.7935217Z Receiving objects: 2% (6/276) 2022-07-30T05:35:23.7938611Z Receiving objects: 3% (9/276) 2022-07-30T05:35:23.7939073Z Receiving objects: 4% (12/276) 2022-07-30T05:35:23.7939644Z Receiving objects: 5% (14/276) 2022-07-30T05:35:23.7940704Z Receiving objects: 6% (17/276) 2022-07-30T05:35:23.8011873Z Receiving objects: 7% (20/276) 2022-07-30T05:35:23.8013124Z Receiving objects: 8% (23/276) 2022-07-30T05:35:23.8014191Z Receiving objects: 9% (25/276) 2022-07-30T05:35:23.8014728Z Receiving objects: 10% (28/276) 2022-07-30T05:35:23.8015770Z Receiving objects: 11% (31/276) 2022-07-30T05:35:23.8017502Z Receiving objects: 12% (34/276) 2022-07-30T05:35:23.8017930Z Receiving objects: 13% (36/276) 2022-07-30T05:35:23.8018574Z Receiving objects: 14% (39/276) 2022-07-30T05:35:23.8095529Z Receiving objects: 15% (42/276) 2022-07-30T05:35:23.8100202Z Receiving objects: 16% (45/276) 2022-07-30T05:35:23.8100725Z Receiving objects: 17% (47/276) 2022-07-30T05:35:23.8132088Z Receiving objects: 18% (50/276) 2022-07-30T05:35:23.9144655Z Receiving objects: 19% (53/276) 2022-07-30T05:35:23.9148159Z Receiving objects: 20% (56/276) 2022-07-30T05:35:23.9154321Z Receiving objects: 21% (58/276) 2022-07-30T05:35:23.9156506Z Receiving objects: 22% (61/276) 2022-07-30T05:35:23.9158029Z Receiving objects: 23% (64/276) 2022-07-30T05:35:23.9158573Z Receiving objects: 24% (67/276) 2022-07-30T05:35:23.9159350Z Receiving objects: 25% (69/276) 2022-07-30T05:35:23.9162439Z Receiving objects: 26% (72/276) 2022-07-30T05:35:23.9163322Z Receiving objects: 27% (75/276) 2022-07-30T05:35:23.9163827Z Receiving objects: 28% (78/276) 2022-07-30T05:35:23.9167760Z Receiving objects: 29% (81/276) 2022-07-30T05:35:23.9168315Z Receiving objects: 30% (83/276) 2022-07-30T05:35:23.9170250Z Receiving objects: 31% (86/276) 2022-07-30T05:35:23.9170781Z Receiving objects: 32% (89/276) 2022-07-30T05:35:23.9172292Z Receiving objects: 33% (92/276) 2022-07-30T05:35:23.9173107Z Receiving objects: 34% (94/276) 2022-07-30T05:35:23.9174882Z Receiving objects: 35% (97/276) 2022-07-30T05:35:23.9175411Z Receiving objects: 36% (100/276) 2022-07-30T05:35:23.9176152Z Receiving objects: 37% (103/276) 2022-07-30T05:35:23.9176650Z Receiving objects: 38% (105/276) 2022-07-30T05:35:23.9177840Z Receiving objects: 39% (108/276) 2022-07-30T05:35:23.9178341Z Receiving objects: 40% (111/276) 2022-07-30T05:35:23.9179072Z Receiving objects: 41% (114/276) 2022-07-30T05:35:23.9179563Z Receiving objects: 42% (116/276) 2022-07-30T05:35:23.9183062Z Receiving objects: 43% (119/276) 2022-07-30T05:35:23.9183702Z Receiving objects: 44% (122/276) 2022-07-30T05:35:23.9184459Z Receiving objects: 45% (125/276) 2022-07-30T05:35:23.9184960Z Receiving objects: 46% (127/276) 2022-07-30T05:35:23.9185681Z Receiving objects: 47% (130/276) 2022-07-30T05:35:23.9186172Z Receiving objects: 48% (133/276) 2022-07-30T05:35:23.9186902Z Receiving objects: 49% (136/276) 2022-07-30T05:35:23.9187391Z Receiving objects: 50% (138/276) 2022-07-30T05:35:23.9188120Z Receiving objects: 51% (141/276) 2022-07-30T05:35:23.9188602Z Receiving objects: 52% (144/276) 2022-07-30T05:35:23.9189313Z Receiving objects: 53% (147/276) 2022-07-30T05:35:23.9189781Z Receiving objects: 54% (150/276) 2022-07-30T05:35:23.9190496Z Receiving objects: 55% (152/276) 2022-07-30T05:35:23.9190982Z Receiving objects: 56% (155/276) 2022-07-30T05:35:23.9191702Z Receiving objects: 57% (158/276) 2022-07-30T05:35:23.9192188Z Receiving objects: 58% (161/276) 2022-07-30T05:35:23.9192895Z Receiving objects: 59% (163/276) 2022-07-30T05:35:23.9193380Z Receiving objects: 60% (166/276) 2022-07-30T05:35:23.9194107Z Receiving objects: 61% (169/276) 2022-07-30T05:35:23.9194571Z Receiving objects: 62% (172/276) 2022-07-30T05:35:23.9195280Z Receiving objects: 63% (174/276) 2022-07-30T05:35:23.9195771Z Receiving objects: 64% (177/276) 2022-07-30T05:35:23.9197043Z Receiving objects: 65% (180/276) 2022-07-30T05:35:23.9197665Z Receiving objects: 66% (183/276) 2022-07-30T05:35:23.9197967Z Receiving objects: 67% (185/276) 2022-07-30T05:35:23.9198389Z Receiving objects: 68% (188/276) 2022-07-30T05:35:23.9199635Z Receiving objects: 69% (191/276) 2022-07-30T05:35:23.9200133Z Receiving objects: 70% (194/276) 2022-07-30T05:35:23.9200808Z Receiving objects: 71% (196/276) 2022-07-30T05:35:23.9201462Z Receiving objects: 72% (199/276) 2022-07-30T05:35:23.9202102Z Receiving objects: 73% (202/276) 2022-07-30T05:35:23.9202741Z Receiving objects: 74% (205/276) 2022-07-30T05:35:23.9203378Z Receiving objects: 75% (207/276) 2022-07-30T05:35:23.9204015Z Receiving objects: 76% (210/276) 2022-07-30T05:35:23.9204654Z Receiving objects: 77% (213/276) 2022-07-30T05:35:23.9205366Z Receiving objects: 78% (216/276) 2022-07-30T05:35:23.9206211Z Receiving objects: 79% (219/276) 2022-07-30T05:35:23.9206901Z Receiving objects: 80% (221/276) 2022-07-30T05:35:23.9207555Z Receiving objects: 81% (224/276) 2022-07-30T05:35:23.9208208Z Receiving objects: 82% (227/276) 2022-07-30T05:35:23.9209234Z Receiving objects: 83% (230/276) 2022-07-30T05:35:23.9209544Z Receiving objects: 84% (232/276) 2022-07-30T05:35:23.9209844Z Receiving objects: 85% (235/276) 2022-07-30T05:35:23.9210127Z Receiving objects: 86% (238/276) 2022-07-30T05:35:23.9210425Z Receiving objects: 87% (241/276) 2022-07-30T05:35:23.9210733Z Receiving objects: 88% (243/276) 2022-07-30T05:35:23.9211032Z Receiving objects: 89% (246/276) 2022-07-30T05:35:23.9211333Z Receiving objects: 90% (249/276) 2022-07-30T05:35:23.9211625Z Receiving objects: 91% (252/276) 2022-07-30T05:35:23.9211908Z Receiving objects: 92% (254/276) 2022-07-30T05:35:23.9212197Z Receiving objects: 93% (257/276) 2022-07-30T05:35:23.9212496Z Receiving objects: 94% (260/276) 2022-07-30T05:35:23.9332473Z Receiving objects: 95% (263/276) 2022-07-30T05:35:23.9333601Z remote: Total 276 (delta 37), reused 209 (delta 29), pack-reused 0 2022-07-30T05:35:23.9385482Z Receiving objects: 96% (265/276) 2022-07-30T05:35:23.9385885Z Receiving objects: 97% (268/276) 2022-07-30T05:35:23.9386189Z Receiving objects: 98% (271/276) 2022-07-30T05:35:23.9386476Z Receiving objects: 99% (274/276) 2022-07-30T05:35:23.9386769Z Receiving objects: 100% (276/276) 2022-07-30T05:35:23.9387111Z Receiving objects: 100% (276/276), 550.03 KiB | 3.69 MiB/s, done. 2022-07-30T05:35:23.9387738Z Resolving deltas: 0% (0/37) 2022-07-30T05:35:23.9388034Z Resolving deltas: 2% (1/37) 2022-07-30T05:35:23.9388326Z Resolving deltas: 5% (2/37) 2022-07-30T05:35:23.9388599Z Resolving deltas: 8% (3/37) 2022-07-30T05:35:23.9388888Z Resolving deltas: 10% (4/37) 2022-07-30T05:35:23.9389175Z Resolving deltas: 13% (5/37) 2022-07-30T05:35:23.9389458Z Resolving deltas: 16% (6/37) 2022-07-30T05:35:23.9389750Z Resolving deltas: 18% (7/37) 2022-07-30T05:35:23.9390034Z Resolving deltas: 21% (8/37) 2022-07-30T05:35:23.9390298Z Resolving deltas: 24% (9/37) 2022-07-30T05:35:23.9390585Z Resolving deltas: 27% (10/37) 2022-07-30T05:35:23.9390881Z Resolving deltas: 29% (11/37) 2022-07-30T05:35:23.9391172Z Resolving deltas: 32% (12/37) 2022-07-30T05:35:23.9391456Z Resolving deltas: 35% (13/37) 2022-07-30T05:35:23.9391741Z Resolving deltas: 37% (14/37) 2022-07-30T05:35:23.9392008Z Resolving deltas: 40% (15/37) 2022-07-30T05:35:23.9392291Z Resolving deltas: 43% (16/37) 2022-07-30T05:35:23.9392576Z Resolving deltas: 45% (17/37) 2022-07-30T05:35:23.9392860Z Resolving deltas: 48% (18/37) 2022-07-30T05:35:23.9393143Z Resolving deltas: 51% (19/37) 2022-07-30T05:35:23.9393425Z Resolving deltas: 54% (20/37) 2022-07-30T05:35:23.9393705Z Resolving deltas: 56% (21/37) 2022-07-30T05:35:23.9393969Z Resolving deltas: 59% (22/37) 2022-07-30T05:35:23.9394246Z Resolving deltas: 62% (23/37) 2022-07-30T05:35:23.9394527Z Resolving deltas: 64% (24/37) 2022-07-30T05:35:23.9394805Z Resolving deltas: 67% (25/37) 2022-07-30T05:35:23.9395085Z Resolving deltas: 70% (26/37) 2022-07-30T05:35:23.9395363Z Resolving deltas: 72% (27/37) 2022-07-30T05:35:23.9395779Z Resolving deltas: 75% (28/37) 2022-07-30T05:35:23.9396071Z Resolving deltas: 78% (29/37) 2022-07-30T05:35:23.9396358Z Resolving deltas: 81% (30/37) 2022-07-30T05:35:23.9396644Z Resolving deltas: 83% (31/37) 2022-07-30T05:35:23.9396927Z Resolving deltas: 86% (32/37) 2022-07-30T05:35:23.9397210Z Resolving deltas: 89% (33/37) 2022-07-30T05:35:23.9397481Z Resolving deltas: 91% (34/37) 2022-07-30T05:35:23.9397766Z Resolving deltas: 94% (35/37) 2022-07-30T05:35:23.9398052Z Resolving deltas: 97% (36/37) 2022-07-30T05:35:23.9398333Z Resolving deltas: 100% (37/37) 2022-07-30T05:35:23.9398629Z Resolving deltas: 100% (37/37), done. 2022-07-30T05:35:23.9557531Z From https://github.com/... 2022-07-30T05:35:23.9565749Z * [new ref] b53e99004faeb24ccb3e74d94e958ed443bfdc90 -> origin/40-new-website 2022-07-30T05:35:23.9611221Z ##[endgroup] 2022-07-30T05:35:23.9614732Z ##[group]Determining the checkout info 2022-07-30T05:35:23.9618272Z ##[endgroup] 2022-07-30T05:35:23.9621147Z ##[group]Checking out the ref 2022-07-30T05:35:23.9624279Z [command]/usr/bin/git checkout --progress --force -B 40-new-website refs/remotes/origin/40-new-website 2022-07-30T05:35:23.9910496Z Switched to a new branch '40-new-website' 2022-07-30T05:35:23.9911583Z branch '40-new-website' set up to track 'origin/40-new-website'. 2022-07-30T05:35:23.9919543Z ##[endgroup] 2022-07-30T05:35:23.9998728Z [command]/usr/bin/git log -1 --format='%H' 2022-07-30T05:35:24.0042205Z 'b53e99004faeb24ccb3e74d94e958ed443bfdc90' 2022-07-30T05:35:24.0415747Z ##[group]Run google-github-actions/auth@v0 2022-07-30T05:35:24.0416190Z with: 2022-07-30T05:35:24.0417003Z workload_identity_provider: *** 2022-07-30T05:35:24.0417656Z service_account: *** 2022-07-30T05:35:24.0418032Z create_credentials_file: true 2022-07-30T05:35:24.0418424Z export_environment_variables: true 2022-07-30T05:35:24.0418825Z cleanup_credentials: true 2022-07-30T05:35:24.0419144Z access_token_lifetime: 3600s 2022-07-30T05:35:24.0419664Z access_token_scopes: https://www.googleapis.com/auth/cloud-platform 2022-07-30T05:35:24.0420098Z retries: 0 2022-07-30T05:35:24.0420468Z id_token_include_email: false 2022-07-30T05:35:24.0420810Z env: 2022-07-30T05:35:24.0421203Z PROJECT_ID: some-project-id 2022-07-30T05:35:24.0421546Z SERVICE: some-service 2022-07-30T05:35:24.0421901Z REGION: europe-west3 2022-07-30T05:35:24.0422387Z ##[endgroup] 2022-07-30T05:35:24.5812256Z Created credentials file at "/home/runner/work/.../gha-creds-22197172c689d013.json" 2022-07-30T05:35:24.5813451Z 2022-07-30T05:35:24.5847052Z 2022-07-30T05:35:24.5951005Z ##[group]Run echo 2 2022-07-30T05:35:24.5951504Z echo 2 2022-07-30T05:35:24.6020895Z shell: /usr/bin/bash -e {0} 2022-07-30T05:35:24.6021345Z env: 2022-07-30T05:35:24.6021749Z PROJECT_ID: some-project-id 2022-07-30T05:35:24.6022354Z SERVICE: some-service 2022-07-30T05:35:24.6022720Z REGION: europe-west3 2022-07-30T05:35:24.6023264Z CLOUDSDK_AUTH_CREDENTIAL_FILE_OVERRIDE: /home/runner/work/.../gha-creds-22197172c689d013.json 2022-07-30T05:35:24.6023922Z GOOGLE_APPLICATION_CREDENTIALS: /home/runner/work/.../gha-creds-22197172c689d013.json 2022-07-30T05:35:24.6024552Z GOOGLE_GHA_CREDS_PATH: /home/runner/work/.../gha-creds-22197172c689d013.json 2022-07-30T05:35:24.6025090Z CLOUDSDK_CORE_PROJECT: some-project-id 2022-07-30T05:35:24.6025589Z CLOUDSDK_PROJECT: some-project-id 2022-07-30T05:35:24.6025986Z GCLOUD_PROJECT: some-project-id 2022-07-30T05:35:24.6026594Z GCP_PROJECT: some-project-id 2022-07-30T05:35:24.6027073Z GOOGLE_CLOUD_PROJECT: some-project-id 2022-07-30T05:35:24.6027491Z ##[endgroup] 2022-07-30T05:35:24.6363322Z 2 2022-07-30T05:35:24.6428395Z ##[group]Run google-github-actions/deploy-cloudrun@v0 2022-07-30T05:35:24.6428742Z with: 2022-07-30T05:35:24.6429001Z service: some-service 2022-07-30T05:35:24.6429278Z region: europe-west3 2022-07-30T05:35:24.6429517Z source: ./ 2022-07-30T05:35:24.6429761Z timeout: 30m 2022-07-30T05:35:24.6430013Z no_traffic: false 2022-07-30T05:35:24.6430251Z env: 2022-07-30T05:35:24.6430533Z PROJECT_ID: some-project-id 2022-07-30T05:35:24.6430844Z SERVICE: some-service 2022-07-30T05:35:24.6431113Z REGION: europe-west3 2022-07-30T05:35:24.6431545Z CLOUDSDK_AUTH_CREDENTIAL_FILE_OVERRIDE: /home/runner/work/.../gha-creds-22197172c689d013.json 2022-07-30T05:35:24.6432112Z GOOGLE_APPLICATION_CREDENTIALS: /home/runner/work/.../gha-creds-22197172c689d013.json 2022-07-30T05:35:24.6432627Z GOOGLE_GHA_CREDS_PATH: /home/runner/work/.../gha-creds-22197172c689d013.json 2022-07-30T05:35:24.6433087Z CLOUDSDK_CORE_PROJECT: some-project-id 2022-07-30T05:35:24.6433473Z CLOUDSDK_PROJECT: some-project-id 2022-07-30T05:35:24.6433845Z GCLOUD_PROJECT: some-project-id 2022-07-30T05:35:24.6434198Z GCP_PROJECT: some-project-id 2022-07-30T05:35:24.6434566Z GOOGLE_CLOUD_PROJECT: some-project-id 2022-07-30T05:35:24.6434885Z ##[endgroup] 2022-07-30T05:35:25.7289749Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/0efd5e28-2f11-447a-88ee-a3b397f3b61e -f /home/runner/work/_temp/6300c0dc-1f34-4b79-8d72-a44dc07868ea 2022-07-30T05:36:15.6348751Z Running: gcloud beta run deploy some-service --quiet --platform managed --region europe-west3 --source ./ --timeout 30m --timeout 30m --project some-project-id --format json 2022-07-30T05:48:41.7598645Z ##[error]google-github-actions/deploy-cloudrun failed with: failed to execute gcloud command `gcloud beta run deploy some-service --quiet --platform managed --region europe-west3 --source ./ --timeout 30m --timeout 30m --project some-project-id --format json`: This command is equivalent to running `gcloud builds submit --tag [IMAGE] ./` and `gcloud run deploy some-service --image [IMAGE]` Building using Dockerfile and deploying container to Cloud Run service [some-service] in project [some-project-id] region [europe-west3] Building and deploying... Uploading sources...............done Building Container.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................failed Deployment failed ERROR: (gcloud.beta.run.deploy) DEADLINE_EXCEEDED 2022-07-30T05:48:41.7739314Z Post job cleanup. 2022-07-30T05:48:41.8459923Z Removed exported credentials at "/home/runner/work/.../gha-creds-22197172c689d013.json". 2022-07-30T05:48:41.8548078Z Post job cleanup. 2022-07-30T05:48:42.0038194Z [command]/usr/bin/git version 2022-07-30T05:48:42.0094207Z git version 2.37.1 2022-07-30T05:48:42.0146360Z Temporarily overriding HOME='/home/runner/work/_temp/d583bc7d-024f-455d-9034-4fe096a4935c' before making global git config changes 2022-07-30T05:48:42.0149472Z Adding repository directory to the temporary git global config as a safe directory 2022-07-30T05:48:42.0157427Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/... 2022-07-30T05:48:42.0215325Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-07-30T05:48:42.0265047Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-07-30T05:48:42.0644462Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-07-30T05:48:42.0690639Z http.https://github.com/.extraheader 2022-07-30T05:48:42.0704757Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2022-07-30T05:48:42.0759594Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2022-07-30T05:48:42.1539317Z Cleaning up orphan processes ```

Additional information

This line looks weird:

gcloud beta run deploy some-service --quiet --platform managed --region europe-west3 --source ./ --timeout 30m --timeout 30m --project some-project-id --format json

Timeout is specified twice here.

sethvargo commented 2 years ago

Hi @ciriousjoker I replied to your other comment at https://github.com/google-github-actions/deploy-cloudrun/issues/239#issuecomment-1200308291. The timeout value is the runtime request timeout, not the build timeout. There is no way to customize the build timeout right now. This is a limitation of Cloud Run, not this GitHub Action.