From b1705dd3b244ea59d7b7de99f79c93637dc691be Mon Sep 17 00:00:00 2001 From: Philip Sala Date: Thu, 21 May 2026 12:57:44 +0200 Subject: [PATCH] Install ffmpeg via apt-get in workflow template --- src/commands/init/base-files.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/commands/init/base-files.ts b/src/commands/init/base-files.ts index 546c513..cafc8d8 100644 --- a/src/commands/init/base-files.ts +++ b/src/commands/init/base-files.ts @@ -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 @@ -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