Skip to content

Commit

Permalink
ci: adding ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrannychaseroperation committed Apr 15, 2024
1 parent d84b332 commit d56d74a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
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:
- name: Check out Git repository
Expand Down Expand Up @@ -48,4 +52,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Build
path: out/Hydra-win32-x64
path: ${{ matrix.os.build_path }}

0 comments on commit d56d74a

Please sign in to comment.