From 348e7be3d34cccd6898d25133137310e7d73db0d Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Tue, 1 Nov 2022 22:46:24 -0400 Subject: [PATCH] ci: ensure linux binaries have execute perms (#57) --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 09188a3..9c1c892 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -77,6 +77,7 @@ jobs: mkdir -p ./src-tauri/bin/ cp ./artifact-out/*.exe ./src-tauri/bin || true cp ./third-party/glew_2.2.0/windows/glewinfo.exe ./src-tauri/bin + chmod +x ./src-tauri/bin/* cp -r ./artifact-out/data ./src-tauri mv ./metadata.json ./src-tauri/data/metadata.json ls ./src-tauri