diff --git a/.github/workflows/cloud-runner-aws-pipeline.yml b/.github/workflows/cloud-runner-aws-pipeline.yml index ee8be0e6..bb25c995 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 -n1 -d '\n' -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 658c46c4..ce2b96d3 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 -n1 -d '\n' -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 }}