From 7c06cbd46544884b3a470d9e877deb8de3993c4e Mon Sep 17 00:00:00 2001 From: MASES Public Developers Team <94312179+masesdevelopers@users.noreply.github.com> Date: Wed, 15 May 2024 03:56:46 +0200 Subject: [PATCH] Added missing repository checkout (#171) --- .github/workflows/windows.yaml | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index d099aeedcc..693dd2d571 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -57,10 +57,6 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - name: Export environment variables - run: set - shell: cmd - # Runs a set of commands using the runners shell # Support longpaths - name: Support long paths @@ -155,6 +151,16 @@ jobs: runs-on: windows-latest steps: + # Runs a set of commands using the runners shell + # Support longpaths + - name: Support long paths + run: git config --system core.longpaths true + + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + with: + fetch-depth: '1' + - name: Restore JCOReflector bin from cache uses: actions/cache/restore@v4 with: @@ -239,6 +245,16 @@ jobs: runs-on: windows-latest steps: + # Runs a set of commands using the runners shell + # Support longpaths + - name: Support long paths + run: git config --system core.longpaths true + + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + with: + fetch-depth: '1' + - name: Restore JCOReflector bin from cache uses: actions/cache/restore@v4 with: @@ -330,6 +346,16 @@ jobs: runs-on: windows-latest steps: + # Runs a set of commands using the runners shell + # Support longpaths + - name: Support long paths + run: git config --system core.longpaths true + + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + with: + fetch-depth: '1' + - name: Restore JCOReflector bin from cache uses: actions/cache/restore@v4 with: