Skip to content

Commit

Permalink
Use tar to preserve links
Browse files Browse the repository at this point in the history
  • Loading branch information
julek-wolfssl committed Aug 5, 2024
1 parent 54370cc commit 868836e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/rng-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 868836e

Please sign in to comment.