From 10f5b068ddd9aa77be732fcf677ba84ebec626f3 Mon Sep 17 00:00:00 2001 From: Mike Almeloo Date: Sat, 28 Oct 2023 16:41:11 +0200 Subject: [PATCH] Mark built artifacts as executable on non-windows systems --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7551db..70982a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,9 @@ jobs: run: pip install --break-system-packages pyinstaller - name: Build RiiTag RPC run: pyinstaller riitag-rpc.spec + - name: Mark as executable + if: ${{ matrix.os != 'windows-2022' }} + run: chmod +x -R dist/ - name: Publish Build Artifacts uses: actions/upload-artifact@master with: