mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
fix(github): try using runner.os? matrix.os == 'windows-latest' is just a skip
This commit is contained in:
parent
bbd3f28adf
commit
06ccd053a5
1 changed files with 4 additions and 2 deletions
6
.github/workflows/push.yml
vendored
6
.github/workflows/push.yml
vendored
|
|
@ -40,8 +40,10 @@ jobs:
|
|||
with:
|
||||
submodules: recursive
|
||||
- name: Install dependencies (Ubuntu)
|
||||
run: sudo apt install -y libopengl-dev libglx-dev libxext-dev libglvnd-dev
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
if: runner.os == 'Windows'
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y libopengl-dev libglx-dev libxext-dev libglvnd-dev
|
||||
|
||||
- name: Prepare
|
||||
run: mkdir build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue