Skip to content

Commit

Permalink
chore: fixed github actions system (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
septs authored Dec 15, 2024
1 parent 0fa28bb commit da3d2a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [ubuntu-24.04]
build:
- {variant: make, name: Linux, artifact: linux-x64}
- {variant: make-without-lto, name: Linux (w/o LTO), artifact: linux-x64-without-lto}
- {variant: debian, name: Debian, artifact: debian-x64}
- {variant: mingw, name: Windows with MinGW, artifact: windows-x64}
- {variant: woa-mingw, name: Windows on ARM with MinGW, artifact: windows-arm64}
include:
- os: macos-latest
- os: macos-14
build: {variant: make, name: macOS, artifact: macos-universal}
- os: macos-latest
build: {variant: make-without-lto, name: macOS (w/o LTO), artifact: macos-universal-without-lto}
Expand All @@ -48,7 +48,7 @@ jobs:
path: ${{ github.workspace }}/build/*.*
release:
name: Release
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: startsWith(github.ref, 'refs/tags/v')
needs: build
permissions:
Expand Down

0 comments on commit da3d2a8

Please sign in to comment.