From 7d85109b19e425314badd0311dc6b58abd4dcc5b Mon Sep 17 00:00:00 2001 From: David Roman <2538074+davdroman@users.noreply.github.com> Date: Sun, 17 Sep 2023 12:51:03 +0100 Subject: [PATCH] [CI] Perform Git checkout as early as possible (#362) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise tea doesn't see tea.yml. I don't know what I was thinking in #361 🤦‍♂️ --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00789f88..3f002905 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,6 +101,9 @@ jobs: # xcode: 15.0 # install: true steps: + - name: Git Checkout + uses: actions/checkout@v3 + - name: Set up tea environment uses: teaxyz/setup@v1 with: @@ -126,9 +129,6 @@ jobs: xcrun simctl list xcodebuild -scheme "Showcase" -showdestinations - - name: Git Checkout - uses: actions/checkout@v3 - - name: Build Showcase run: fastlane build platform:${{ matrix.platform[0] }} version:${{ matrix.platform[1] }} scheme:Showcase