Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/commands/init/base-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ jobs:
key: \${{ runner.os }}-gmcache

# ffmpeg is needed for linux: https://github.com/YoYoGames/GameMaker-Bugs/issues/4977
- name: Set up ffmpeg
- name: Install ffmpeg via apt
if: \${{ runner.os == 'Linux' }}
uses: FedericoCarboni/setup-ffmpeg@v3
with:
ffmpeg-version: "6.1.0"
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg

# You can create an access token at https://gamemaker.io/en/account/access-keys
# Then, in github, set a Repository Secret named GAMEMAKER_PAT with that value
Expand Down Expand Up @@ -187,11 +187,11 @@ jobs:
key: \${{ runner.os }}-gmcache-\${{ matrix.target }}

# ffmpeg is needed for linux: https://github.com/YoYoGames/GameMaker-Bugs/issues/4977
- name: Set up ffmpeg
- name: Install ffmpeg via apt
if: \${{ runner.os == 'Linux' }}
uses: FedericoCarboni/setup-ffmpeg@v3
with:
ffmpeg-version: "6.1.0"
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg

# You can create an access token at https://gamemaker.io/en/account/access-keys
# Then, in github, set a Repository Secret named GAMEMAKER_PAT with that value
Expand Down
Loading