diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 4cf1cfe..3e619a3 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -13,9 +13,6 @@ jobs: runs-on: ubuntu-latest container: ubuntu:latest steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Instalar dependencias run: | apt-get update && apt-get install -y \ @@ -28,6 +25,9 @@ jobs: && apt-get install -y nodejs \ && rm -rf /var/lib/apt/lists/* + - name: Checkout + uses: actions/checkout@v4 + - name: Setup SDL3 run: | git clone https://github.com/libsdl-org/SDL.git /tmp/SDL3 \ @@ -56,8 +56,6 @@ jobs: runs-on: ubuntu-latest container: ubuntu:latest steps: - - uses: actions/checkout@v4 - - name: Instalar dependencias run: | apt-get update && apt-get install -y \ @@ -67,6 +65,9 @@ jobs: && apt-get install -y nodejs \ && rm -rf /var/lib/apt/lists/* + - name: Checkout + uses: actions/checkout@v4 + - name: Setup SDL3 (MinGW) run: | git clone https://github.com/libsdl-org/SDL.git /tmp/SDL3 \