From 2dc7a6a4d1bf5c2c67c766801d9c2853c351043c Mon Sep 17 00:00:00 2001 From: crocchetto <162356915+crocchetto@users.noreply.github.com> Date: Mon, 12 Jan 2026 13:19:07 +0100 Subject: [PATCH 1/3] Fix for workflow icon was not working and gave error --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32da1d3..43ffa80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,10 @@ jobs: # Create fake assets dir so build works mkdir res + if [ "${{ runner.os }}" == "macOS" ]; then + sips -s format png /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/GenericApplicationIcon.icns --out res/window_icon.png + fi + if [ ! "${{ runner.os }}" == "Windows" ]; then export WITH_SYSTEM_LIBS=ON else From 74f429f0f0b00d7f5712a3c6656610555da56c36 Mon Sep 17 00:00:00 2001 From: crocchetto <162356915+crocchetto@users.noreply.github.com> Date: Mon, 12 Jan 2026 13:22:58 +0100 Subject: [PATCH 2/3] Trigger CI Build From d6e0013d2e3b28904b4fbd158fa8b0bda0292e31 Mon Sep 17 00:00:00 2001 From: crocchetto <162356915+crocchetto@users.noreply.github.com> Date: Mon, 12 Jan 2026 21:51:12 +0100 Subject: [PATCH 3/3] update for github actions ubuntu version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43ffa80..babeb35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: config: - { name: "Windows", os: windows-2022, mpv_version: 20211226-git-d92cf77 } - { name: "macOS", os: macos-latest } - - { name: "Ubuntu", os: ubuntu-20.04 } + - { name: "Ubuntu", os: ubuntu-latest } fail-fast: false name: ${{ matrix.config.name }}