Skip to content

Commit 332c64a

Browse files
committed
docker-OpenWRT.yml: Follow links
1 parent 5320b42 commit 332c64a

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/docker-OpenWrt.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,15 @@ jobs:
2828
- uses: actions/checkout@v4
2929
- name: Compile libwolfssl.so
3030
run: ./autogen.sh && ./configure --enable-all && make
31+
# 2024-08-05 - Something broke in the actions. They are no longer following links.
32+
- name: tar libwolfssl.so
33+
working-directory: src/.libs
34+
run: tar -zcf libwolfssl.tgz libwolfssl.so*
3135
- name: Upload libwolfssl.so
3236
uses: actions/upload-artifact@v4
3337
with:
3438
name: openwrt-libwolfssl.so
35-
path: src/.libs/libwolfssl.so
39+
path: src/.libs/libwolfssl.tgz
3640
retention-days: 5
3741
compile_container:
3842
name: Compile container
@@ -50,7 +54,9 @@ jobs:
5054
- uses: actions/download-artifact@v4
5155
with:
5256
name: openwrt-libwolfssl.so
53-
path: Docker/OpenWrt/.
57+
path: .
58+
- name: untar libwolfssl.so
59+
run: tar -xf libwolfssl.tgz -C Docker/OpenWrt
5460
- name: Build but dont push
5561
uses: docker/build-push-action@v5
5662
with:

0 commit comments

Comments
 (0)