From f213392d9fbf0151fb0caca6de31b0a927aa4fd8 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Mon, 3 Jan 2022 00:07:23 +0000 Subject: [PATCH] fixing library warning in setup step --- .github/workflows/cloud-runner-aws-pipeline.yml | 2 +- .github/workflows/cloud-runner-k8s-pipeline.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cloud-runner-aws-pipeline.yml b/.github/workflows/cloud-runner-aws-pipeline.yml index 9414fbec..192c6b8d 100644 --- a/.github/workflows/cloud-runner-aws-pipeline.yml +++ b/.github/workflows/cloud-runner-aws-pipeline.yml @@ -78,7 +78,7 @@ jobs: AWS_DEFAULT_REGION: eu-west-2 DEBUG: true GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs - INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -I{} gcloud logging write game-ci "{}" + INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -d "\n" -I{} gcloud logging write game-ci "{}" with: cloudRunnerCluster: aws versioning: None diff --git a/.github/workflows/cloud-runner-k8s-pipeline.yml b/.github/workflows/cloud-runner-k8s-pipeline.yml index 8c4a54bf..74b60332 100644 --- a/.github/workflows/cloud-runner-k8s-pipeline.yml +++ b/.github/workflows/cloud-runner-k8s-pipeline.yml @@ -99,7 +99,7 @@ jobs: CloudRunnerBranch: remote-builder/unified-providers DEBUG: true GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs - INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -I{} gcloud logging write game-ci {} + INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -d "\n" -I{} gcloud logging write game-ci {} with: cloudRunnerCluster: k8s UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}