From 7f1e76474b9ae443d8f2e2243a1cd38eee9f5043 Mon Sep 17 00:00:00 2001 From: Antoine Toulme Date: Sat, 19 Aug 2023 17:44:51 -0700 Subject: [PATCH] fix builds --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d52bf5ef8..389db6c25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,7 +94,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [Linux, Windows] + os: [ubuntu-latest, windows-latest] needs: assemble steps: - name: Download distsrc @@ -103,10 +103,10 @@ jobs: with: name: distsrc - name: Unzip source - if: ${{ matrix.os == 'Linux' }} + if: ${{ matrix.os == 'ubuntu-latest' }} run: unzip -q -o - tuweni-src-*.zip -d distunzipped - name: Unzip source - if: ${{ matrix.os == 'Windows' }} + if: ${{ matrix.os == 'windows-latest' }} run: Expand-Archive -Force -Path tuweni-src-*.zip -DestinationPath distunzipped - name: Rename folder run: mv distunzipped/tuweni-src-* distunzipped/tuweni