diff --git a/.github/workflows/cloud-runner-aws-pipeline.yml b/.github/workflows/cloud-runner-aws-pipeline.yml index b45308b0..c80e6c84 100644 --- a/.github/workflows/cloud-runner-aws-pipeline.yml +++ b/.github/workflows/cloud-runner-aws-pipeline.yml @@ -56,15 +56,14 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_DEFAULT_REGION: eu-west-2 DEBUG: true - with: - CloudRunnerBranch: remote-builder/unified-providers - CloudRunnerTests: true - cloudRunnerCluster: aws - projectPath: ${{ matrix.projectPath }} - unityVersion: ${{ matrix.unityVersion }} - targetPlatform: ${{ matrix.targetPlatform }} - githubToken: ${{ secrets.GITHUB_TOKEN }} - awsBaseStackName: game-ci-stack-integration-tests + CLOUD_RUNNER_BRANCH: remote-builder/unified-providers + CLOUD_RUNNER_TESTS: true + CLOUD_RUNNER_CLUSTER: aws + PROJECT_PATH: ${{ matrix.projectPath }} + UNITY_VERSION: ${{ matrix.unityVersion }} + TARGET_PLATFORM: ${{ matrix.targetPlatform }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + AWS_BASE_STACK_NAME: game-ci-stack-integration-tests - uses: ./ id: aws-fargate-unity-build env: diff --git a/.github/workflows/cloud-runner-k8s-pipeline.yml b/.github/workflows/cloud-runner-k8s-pipeline.yml index 198c7347..4c9ad312 100644 --- a/.github/workflows/cloud-runner-k8s-pipeline.yml +++ b/.github/workflows/cloud-runner-k8s-pipeline.yml @@ -56,15 +56,14 @@ jobs: env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} DEBUG: true - with: - CloudRunnerTests: true - cloudRunnerCluster: k8s - projectPath: ${{ matrix.projectPath }} - unityVersion: ${{ matrix.unityVersion }} - targetPlatform: ${{ matrix.targetPlatform }} - githubToken: ${{ secrets.GITHUB_TOKEN }} - kubeConfig: ${{ steps.read-base64.outputs.base64 }} - CloudRunnerBranch: remote-builder/unified-providers + CLOUD_RUNNER_TESTS: true + CLOUD_RUNNER_CLUSTER: k8s + PROJECT_PATH: ${{ matrix.projectPath }} + UNITY_VERSION: ${{ matrix.unityVersion }} + TARGET_PLATFORM: ${{ matrix.targetPlatform }} + GITHUUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + KUBE_CONFIG: ${{ steps.read-base64.outputs.base64 }} + CLOUD_RUNNER_BRANCH: remote-builder/unified-providers ########################### # Cloud Runner Build Test #