Skip to content

Commit

Permalink
Merge pull request #1 from Keyinator/fix-linux-ci
Browse files Browse the repository at this point in the history
fix(github): Update linux runner to ubuntu 22.04
  • Loading branch information
Keyinator authored Sep 18, 2024
2 parents 41b2e62 + 0c65dab commit 30e0048
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@ name: CI Build all products

on:
workflow_call:
workflow_dispatch:

jobs:
build_all:
strategy:
matrix:
builds:
- [ FiveM, five, windows ]
- [ RedM, rdr3, windows ]
- [ Server, server, windows ]
- [ Server, server, linux ]
name: ${{ matrix.builds[0] }}${{ matrix.builds[2] == 'linux' && ' (Linux)' || '' }}
runs-on: ${{ matrix.builds[2] == 'windows' && 'windows-latest' || 'ubuntu-20.04' }}
runs-on: ${{ matrix.builds[2] == 'windows' && 'windows-latest' || 'ubuntu-22.04' }}
env:
PROGRAM: ${{ matrix.builds[1] }}
PLATFORM: ${{ matrix.builds[2] }}
Expand Down

0 comments on commit 30e0048

Please sign in to comment.