From 151f8f7eb2154eb5984ab636916872782e75fed0 Mon Sep 17 00:00:00 2001 From: akuker Date: Fri, 28 Aug 2020 10:45:54 -0500 Subject: [PATCH] Create tar file to retain file permissions --- .github/workflows/c-cpp.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index c885560..8aa3fdc 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -20,11 +20,15 @@ jobs: run: make all DEBUG=1 CONNECT_TYPE=FULLSPEC working-directory: ./src/raspberrypi - - name: Archive production artifacts + - name: tar binary outpus + run: tar -czvf rascsi.tar.gz ./bin + working-directory: ./src/raspberrypi + + - name: upload artifacts uses: actions/upload-artifact@v2 with: - name: executable-binaries - path: ./src/raspberrypi/bin + name: arm-binaries + path: ./src/raspberrypi/bin/rascsi.tar.gz # buildroot-image: # runs-on: ubuntu-latest