From 710a600e7a98282a83537a601ababd248a205de9 Mon Sep 17 00:00:00 2001 From: akuker Date: Fri, 28 Aug 2020 10:52:49 -0500 Subject: [PATCH] Fix typo --- .github/workflows/c-cpp.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 58b18a3..32f9d9f 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -20,7 +20,10 @@ jobs: run: make all DEBUG=1 CONNECT_TYPE=FULLSPEC working-directory: ./src/raspberrypi - - name: tar binary outpus + # We need to tar the binary outputs to retain the executable + # file permission. Currently, actions/upload-artifact only + # supports .ZIP files. + - name: tar binary outputs run: tar -czvf rascsi.tar.gz ./bin working-directory: ./src/raspberrypi