We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de6ebe1 commit fd4af3aCopy full SHA for fd4af3a
.github/workflows/release.yml
@@ -137,12 +137,19 @@ jobs:
137
pattern: artifacts-*
138
path: target/distrib/
139
merge-multiple: true
140
- - name: Install dependencies
+ - name: Install dependencies Linux
141
+ if: ${{ matrix.runner == 'ubuntu-22.04' }}
142
env:
143
DEBIAN_FRONTEND: noninteractive
144
run: |
145
alias apt-get="apt-get --assume-yes"
146
${{ 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 }}
153
- name: Build artifacts
154
155
# Actually do builds and make zips and whatnot
0 commit comments