From ce3c94164a9c3784425ebc920574afc41fb5a5c2 Mon Sep 17 00:00:00 2001 From: allkern Date: Thu, 22 Jun 2023 23:16:20 -0300 Subject: [PATCH] Manually clone repository on all platforms --- .github/workflows/macos.yml | 5 ++++- .github/workflows/ubuntu.yml | 6 ++++-- .github/workflows/windows.yml | 5 ++++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 39e3b2e..49da777 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -9,11 +9,14 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v3 - name: Install SDL2 and dylibbundler run: | brew install sdl2 brew install dylibbundler + - name: Clone repository + run: | + git clone https://github.com/allkern/psx + cd psx - name: Build and pack PSXE run: | git fetch --all --tags diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 81f36e2..55882e5 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -9,11 +9,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - name: Install SDL2 run: | - sudo apt update && sudo apt install libsdl2-dev + - name: Clone repository + run: | + git clone https://github.com/allkern/psx + cd psx - name: Build PSXE run: | git fetch --all --tags diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b4300c6..466dd4c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -9,7 +9,10 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - name: Clone repository + run: | + git clone https://github.com/allkern/psx + cd psx - name: Run build-deps run: ./build-deps.ps1 - name: 64-bit build