From 868836e23e79301e46f2b07235112bc4bc03e304 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Mon, 5 Aug 2024 14:32:37 +0200 Subject: [PATCH] Use tar to preserve links --- .github/workflows/rng-tools.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rng-tools.yml b/.github/workflows/rng-tools.yml index a2297bb806..47b7827e27 100644 --- a/.github/workflows/rng-tools.yml +++ b/.github/workflows/rng-tools.yml @@ -28,11 +28,14 @@ jobs: install: true check: false + - name: tar build-dir + run: tar -zcf build-dir.tgz build-dir + - name: Upload built lib uses: actions/upload-artifact@v4 with: name: wolf-install-rng-tools - path: build-dir + path: build-dir.tgz retention-days: 5 rng-tools_check: @@ -58,7 +61,9 @@ jobs: uses: actions/download-artifact@v4 with: name: wolf-install-rng-tools - path: build-dir + + - name: untar build-dir + run: tar -xf build-dir.tgz - name: Checkout OSP uses: actions/checkout@v4