Skip to content

Commit 78b9771

Browse files
committed
- updated build
1 parent 2b1e2c3 commit 78b9771

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/buildwithdocker.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ jobs:
6262
- name: Compile for linux/armv7
6363
# see https://github.com/docker/buildx/blob/master/docs/reference/buildx_build.md#output this allows that all files created by docker are written somewhere
6464
run: docker build . --platform linux/arm/v7 --build-arg VERSION_STRING="${{env.version_string}} armv7" -o type=local,dest=build/armv7 && cd build/armv7/usr/src/app && tar -czf $GITHUB_WORKSPACE/build/sdmon-armv7.tar.gz sdmon
65+
- name: Compile for linux/armv6
66+
# see https://github.com/docker/buildx/blob/master/docs/reference/buildx_build.md#output this allows that all files created by docker are written somewhere
67+
run: docker build . --platform linux/arm/v6 --build-arg VERSION_STRING="${{env.version_string}} armv6" -o type=local,dest=build/armv6 && cd build/armv6/usr/src/app && tar -czf $GITHUB_WORKSPACE/build/sdmon-armv6.tar.gz sdmon
6568
# **********
6669
# ***** end of CI *****
6770
# **********
@@ -75,6 +78,7 @@ jobs:
7578
files: |
7679
build/sdmon-arm64.tar.gz
7780
build/sdmon-armv7.tar.gz
81+
build/sdmon-armv6.tar.gz
7882
id: "automatic_releases_tagged"
7983
- name: Release if prerelease
8084
if: ${{startsWith(github.ref, 'refs/heads/master')}}
@@ -87,4 +91,5 @@ jobs:
8791
files: |
8892
build/sdmon-arm64.tar.gz
8993
build/sdmon-armv7.tar.gz
94+
build/sdmon-armv6.tar.gz
9095
id: "automatic_releases_not_tagged"

0 commit comments

Comments
 (0)