From 329bde229ef59f8d61e878bba244aaaed8b795b6 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Fri, 29 Jul 2022 20:10:30 -0400 Subject: [PATCH] release: ensure linux artifacts have execute permissions (#1713) --- .github/scripts/releases/extract_build_linux.sh | 4 ++++ .github/workflows/release-pipeline.yaml | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/scripts/releases/extract_build_linux.sh b/.github/scripts/releases/extract_build_linux.sh index 4d24357f8a..ea5a3ce33b 100755 --- a/.github/scripts/releases/extract_build_linux.sh +++ b/.github/scripts/releases/extract_build_linux.sh @@ -16,6 +16,10 @@ strip $DEST/gk strip $DEST/goalc strip $DEST/extractor +chmod +x $DEST/gk +chmod +x $DEST/goalc +chmod +x $DEST/extractor + mkdir -p $DEST/data mkdir -p $DEST/data/launcher/ mkdir -p $DEST/data/decompiler/ diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index 644af0cfa7..75aa887024 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -55,6 +55,7 @@ jobs: tar czf ../final/opengoal-linux-${TAG_VAL}.tar.gz . popd strip ./ci-artifacts/opengoal-linux-static/lsp/lsp + chmod +x ./ci-artifacts/opengoal-linux-static/lsp/lsp cp ./ci-artifacts/opengoal-linux-static/lsp/lsp ./ci-artifacts/final/opengoal-lsp-linux-${TAG_VAL}.bin - name: Prepare Windows Build Assets