From 81f7970c478237fa5245600c6c5e2cc89e0e75ba Mon Sep 17 00:00:00 2001 From: KeksNino Date: Fri, 23 Jan 2026 15:27:22 +0100 Subject: [PATCH] fix workflow with ubuntu 22.04 --- .github/workflows/dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index a37f3ac..a81137e 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -159,7 +159,7 @@ jobs: release: name: Create Release needs: build - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: success() steps: @@ -172,7 +172,7 @@ jobs: run: | mkdir -p release SHORT_SHA="${{ needs.build.outputs.short_sha }}" - cp artifacts/ubuntu-latest-build/SoftwareManager-dev-*-linux release/SoftwareManager-dev-${SHORT_SHA}-linux + cp artifacts/ubuntu-22.04-build/SoftwareManager-dev-*-linux release/SoftwareManager-dev-${SHORT_SHA}-linux cp artifacts/windows-latest-build/SoftwareManager-dev-*-windows.exe release/SoftwareManager-dev-${SHORT_SHA}-windows.exe cp artifacts/macos-latest-build/SoftwareManager-dev-*-macos release/SoftwareManager-dev-${SHORT_SHA}-macos chmod +x release/SoftwareManager-dev-*-linux release/SoftwareManager-dev-*-macos