fixing library warning in setup step

pull/310/head
Frostebite 2022-01-03 01:11:19 +00:00
parent e60db44f8e
commit c5eec1f675
2 changed files with 2 additions and 2 deletions

View File

@ -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 -I{} gcloud logging write game-ci "{}"
INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -n1 -d '\n' -I{} gcloud logging write game-ci "{}"
with:
cloudRunnerCluster: aws
versioning: None

View File

@ -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 -I{} gcloud logging write game-ci "{}"
INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -n1 -d '\n' -I{} gcloud logging write game-ci "{}"
with:
cloudRunnerCluster: k8s
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}