From 99f85b5bc83d338897516d36dc6a7f3ea2676695 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 20 Jun 2024 23:01:34 -0400 Subject: [PATCH] Update build-linux.yml --- .github/workflows/build-linux.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 700ce40..1f1f144 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -50,13 +50,18 @@ jobs: cp src/Picocrypt Picocrypt/Picocrypt/usr/local/bin/ cd Picocrypt dpkg-deb --build --root-owner-group Picocrypt - - - name: Upload artifact + + - name: Prepare to upload artifacts + run: | + mv src/Picocrypt . + mv Picocrypt/Picocrypt.deb . + + - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: build-linux path: | - src/Picocrypt - Picocrypt/Picocrypt.deb + Picocrypt + Picocrypt.deb if-no-files-found: error compression-level: 9