Skip to content

Commit

Permalink
tar
Browse files Browse the repository at this point in the history
  • Loading branch information
julek-wolfssl committed Aug 5, 2024
1 parent 3427d4d commit 345c7d1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 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 @@ -55,10 +58,13 @@ jobs:
sudo apt-get install -y libcurl4-openssl-dev libjansson-dev libp11-dev librtlsdr-dev libcap-dev
- name: Download lib
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: wolf-install-rng-tools
path: build-dir
path: build-dir.tgz

- name: untar build-dir
run: tar -xf build-dir.tgz

- name: tree
run: tree
Expand Down

0 comments on commit 345c7d1

Please sign in to comment.