From 0e191c07122f23590b18246a4877e3d4534582ad Mon Sep 17 00:00:00 2001 From: Nathan Lloyd Ward Date: Fri, 16 Feb 2024 08:09:05 -0500 Subject: [PATCH] Update config2archive.yml --- .github/workflows/config2archive.yml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/workflows/config2archive.yml b/.github/workflows/config2archive.yml index 21a8e50..c52ce71 100644 --- a/.github/workflows/config2archive.yml +++ b/.github/workflows/config2archive.yml @@ -28,7 +28,22 @@ jobs: # Runs a set of commands using the runners shell - name: Run a multi-line script run: | - echo generating artifact + echo generating artifact... ls -lar - - + - uses: actions/checkout@master + - name: Compress action step + uses: a7ul/tar-action@v1.1.0 + id: compress + with: + command: c + cwd: ./test + files: | + ./toCompress + outPath: yolo.tar.gz + - name: Extract files + uses: a7ul/tar-action@v1.1.0 + id: extract + with: + command: x + cwd: ./extract + files: yolo.tar.gz