mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
ci: adding ubuntu-latest
This commit is contained in:
parent
d84b3324fb
commit
d56d74a77b
1 changed files with 8 additions and 4 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -6,11 +6,15 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [windows-latest]
|
os:
|
||||||
|
[
|
||||||
|
{ name: windows-latest, build_path: out/Hydra-win32-x64 },
|
||||||
|
{ name: ubuntu-latest, build_path: out/Hydra-linux-x64 },
|
||||||
|
]
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os.name }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out Git repository
|
- name: Check out Git repository
|
||||||
|
@ -48,4 +52,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Build
|
name: Build
|
||||||
path: out/Hydra-win32-x64
|
path: ${{ matrix.os.build_path }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue