Skip to content

Commit fd4af3a

Browse files
committed
Fix CI for good
1 parent de6ebe1 commit fd4af3a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,19 @@ jobs:
137137
pattern: artifacts-*
138138
path: target/distrib/
139139
merge-multiple: true
140-
- name: Install dependencies
140+
- name: Install dependencies Linux
141+
if: ${{ matrix.runner == 'ubuntu-22.04' }}
141142
env:
142143
DEBIAN_FRONTEND: noninteractive
143144
run: |
144145
alias apt-get="apt-get --assume-yes"
145146
${{ matrix.packages_install }}
147+
- name: Install dependencies Windows
148+
if: ${{ matrix.runner == 'windows-2022' }}
149+
env:
150+
DEBIAN_FRONTEND: noninteractive
151+
run: |
152+
${{ matrix.packages_install }}
146153
- name: Build artifacts
147154
run: |
148155
# Actually do builds and make zips and whatnot

0 commit comments

Comments
 (0)