From 0727a97fdd231192e07307a686e06851b9a6ee02 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Sun, 17 Apr 2022 02:11:55 +0100 Subject: [PATCH] self hosted runner pipeline --- .../cloud-runner-self-hosted-ephemeral.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cloud-runner-self-hosted-ephemeral.yml b/.github/workflows/cloud-runner-self-hosted-ephemeral.yml index 7641835e..0e88bc02 100644 --- a/.github/workflows/cloud-runner-self-hosted-ephemeral.yml +++ b/.github/workflows/cloud-runner-self-hosted-ephemeral.yml @@ -19,6 +19,10 @@ jobs: boot-self-hosted-runner: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 + with: + lfs: false + fetch-depth: 0 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 with: @@ -28,9 +32,6 @@ jobs: - name: Unity - Builder uses: ./ with: - branch: ${{ github.ref }} - GITHUB_SHA: ${{ github.sha }} - GITHUB_REPOSITORY: ${{ github.repositoryUrl }} cloudRunnerCluster: aws allowDirtyBuild: true cloudRunnerMemory: 4096 @@ -57,6 +58,10 @@ jobs: runs-on: self-hosted needs: boot-self-hosted-runner steps: + - uses: actions/checkout@v2 + with: + lfs: false + fetch-depth: 0 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 with: @@ -69,9 +74,6 @@ jobs: # uses: game-ci/unity-builder@3d0eb0805bbe2df90e319abbe42e41d0b9105625 uses: game-ci/unity-builder@cloud-runner-develop with: - branch: ${{ github.ref }} - GITHUB_SHA: ${{ github.sha }} - GITHUB_REPOSITORY: ${{ github.repositoryUrl }} cloudRunnerCluster: aws allowDirtyBuild: true cloudRunnerMemory: 8192