From 31ef9333d00533b940d21873bb1e7376c817a618 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 26 Aug 2024 22:18:28 -0700 Subject: [PATCH] Attempt to fix artifact wrapping --- .github/workflows/makefile.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 4027e36..98306ea 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -21,13 +21,22 @@ jobs: - name: List PLD files run: ls -alh source/u*.pld - - name: Create zip - run: | - tar -cvzf A4091_Logic_Artifacts.tar.gz jedec/ source/ + - name: Create tar.gz archive + run: tar -cvzf A4091_Logic_Artifacts.tar.gz jedec/ source/ - - name: Upload tar.gz artifacts + - name: Upload tar.gz artifact uses: actions/upload-artifact@v4 with: name: A4091 Logic Artifacts path: A4091_Logic_Artifacts.tar.gz + - name: Download the tar.gz artifact + uses: actions/download-artifact@v4 + with: + name: A4091 Logic Artifacts + path: . + + - name: Verify tar.gz file + run: | + ls -alh A4091_Logic_Artifacts.tar.gz +