fixing library warning in setup step

pull/310/head
Frostebite 2022-01-03 00:07:23 +00:00
parent 7e243aa0a1
commit f213392d9f
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 -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

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 -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 }}