From 0da2e4684a3c4b3e79f22adc208035393c3ef35f Mon Sep 17 00:00:00 2001 From: Jan Laupetin Date: Wed, 10 Sep 2025 20:28:19 +0100 Subject: [PATCH] fix: wrong chmod command in linux release --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2a954478..acba13a1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,7 +38,7 @@ jobs: working-directory: ${{ github.workspace }} run: | make -C build -j$(nproc) config=release_x86 all - chmod +x build/bin/Release_${{ matrix.build_arch }}/{ImageConverter,Unlinker,Linker} + chmod +x build/bin/Release_x86/{ImageConverter,Unlinker,Linker} - name: Upload artifacts uses: actions/upload-artifact@v4