mirror of
https://github.com/theoleuthardt/DinoGame.git
synced 2026-06-13 09:27:57 +00:00
fix: dependencies on workers
This commit is contained in:
parent
274993b16a
commit
12c3ebe5b0
1 changed files with 7 additions and 4 deletions
11
.github/workflows/release.yml
vendored
11
.github/workflows/release.yml
vendored
|
|
@ -23,10 +23,13 @@ jobs:
|
|||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Dependencies (Linux/macOS)
|
||||
if: runner.os != 'Windows'
|
||||
run: sudo apt update && sudo apt install -y cmake g++
|
||||
shell: bash
|
||||
- name: Install Dependencies (Linux)
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt install -y cmake g++
|
||||
|
||||
- name: Install Dependencies (macOS)
|
||||
if: runner.os == 'macOS'
|
||||
run: brew install cmake gcc
|
||||
|
||||
- name: Install Dependencies (Windows)
|
||||
if: runner.os == 'Windows'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue