From c0e7cf86fc0d6e6c9b40d6e72008c2a991d1f717 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 26 Jul 2022 11:02:01 +0100 Subject: [PATCH] ci: binaries-mac-x64: preserve executable perms on zipped binaries --- .github/workflows/binaries-mac-x64.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/binaries-mac-x64.yml b/.github/workflows/binaries-mac-x64.yml index 47d874aa3..50bd7a7f5 100644 --- a/.github/workflows/binaries-mac-x64.yml +++ b/.github/workflows/binaries-mac-x64.yml @@ -171,13 +171,14 @@ jobs: strip hledger strip hledger-ui strip hledger-web + zip hledger-mac-x64.zip hledger hledger-ui hledger-web if: env.CONTINUE # XXX intermittent upload failures - name: Upload executables artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: hledger-mac-x64 - path: tmp/hledger-mac-x64 + path: tmp/hledger-mac-x64.zip if: env.CONTINUE