From d94c3532a00ef10843a1c84c3d7888582dec964f Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Thu, 20 Jun 2024 23:07:03 -0400 Subject: [PATCH] Update build-linux.yml --- .github/workflows/build-linux.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 1f1f144..3267cda 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -14,7 +14,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -53,8 +53,13 @@ jobs: - name: Prepare to upload artifacts run: | - mv src/Picocrypt . - mv Picocrypt/Picocrypt.deb . + mkdir out + mv src/Picocrypt out + mv Picocrypt/Picocrypt.deb out + rm -rf src + rm -rf Picocrypt + mv out/Picocrypt . + mv out/Picocrypt.deb . - name: Upload artifacts uses: actions/upload-artifact@v4