Skip to content

Commit

Permalink
fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Aug 20, 2023
1 parent fd05580 commit 7f1e764
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7f1e764

Please sign in to comment.