From 5eea44d46775acbabc05a7a6f122bd0cce5d9812 Mon Sep 17 00:00:00 2001 From: Tuomas Koskela Date: Wed, 9 Oct 2024 11:04:34 +0100 Subject: [PATCH] Tar doesn't like the full path --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f9b8af0..88e11665 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,7 +140,9 @@ jobs: make -j$(nproc --ignore 1) install - name: Pack dependencies - run: tar cfv ${{github.workspace}}/dependencies.tar ${{github.workspace}}/local + run: | + cd ${{github.workspace}} + tar cfv dependencies.tar local - uses: actions/upload-artifact@v4 with: