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