Skip to content

Commit e7907d3

Browse files
committed
adapt to 64bit builds
1 parent c0c1043 commit e7907d3

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

build_release_body.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,33 @@ DOWNLOAD_ARMV6L="https://github.com/rdmtc/RedMatic/releases/download/v$VERSION_A
2020
cat >RELEASE_BODY.md <<EOL
2121
### Downloads
2222
23-
#### CCU3, piVCCU3 und RaspberryMatic Varianten _rpi3_, _rpi4_ und _tinkerboard_
23+
#### CCU3, piVCCU3 und RaspberryMatic Variante _rpi2_ (armv7l)
2424
[![Downloads redmatic-$VERSION_ADDON](https://img.shields.io/github/downloads/rdmtc/RedMatic/v$VERSION_ADDON/redmatic-$VERSION_ADDON.tar.gz.svg)]($DOWNLOAD)
2525
EOL
2626

27+
if [ -f $BUILD_DIR/dist/redmatic-aarch64-$VERSION_ADDON.tar.gz ]; then
28+
cat >>RELEASE_BODY.md <<EOL
29+
#### RaspberryMatic Varianten _rpi3_, _rpi4_ und _tinkerboard_ (aarch64)
30+
[![Downloads redmatic-armv6l-$VERSION_ADDON](https://img.shields.io/github/downloads/rdmtc/RedMatic/v$VERSION_ADDON/redmatic-armv6l-$VERSION_ADDON.tar.gz.svg)]($DOWNLOAD_ARMV6L)
31+
EOL
32+
fi
2733
if [ -f $BUILD_DIR/dist/redmatic-armv6l-$VERSION_ADDON.tar.gz ]; then
2834
cat >>RELEASE_BODY.md <<EOL
29-
#### RaspberryMatic Variante _rpi0_
35+
#### RaspberryMatic Variante _rpi0_ (armv6l)
3036
[![Downloads redmatic-armv6l-$VERSION_ADDON](https://img.shields.io/github/downloads/rdmtc/RedMatic/v$VERSION_ADDON/redmatic-armv6l-$VERSION_ADDON.tar.gz.svg)]($DOWNLOAD_ARMV6L)
3137
EOL
3238
fi
3339

3440
if [ -f $BUILD_DIR/dist/redmatic-i686-$VERSION_ADDON.tar.gz ]; then
3541
cat >>RELEASE_BODY.md <<EOL
36-
#### RaspberryMatic Varianten _ova_ und _intelnuc_
42+
#### RaspberryMatic Varianten _ova_ und _intelnuc_ (i686)
3743
[![Downloads redmatic-i686-$VERSION_ADDON](https://img.shields.io/github/downloads/rdmtc/RedMatic/v$VERSION_ADDON/redmatic-i686-$VERSION_ADDON.tar.gz.svg)]($DOWNLOAD_I686)
3844
EOL
3945
fi
4046

4147
if [ -f $BUILD_DIR/dist/redmatic-x86_64-$VERSION_ADDON.tar.gz ]; then
4248
cat >>RELEASE_BODY.md <<EOL
43-
#### RaspberryMatic Varianten _ova_ und _intelnuc_ ([nur für die neuen 64bit Builds](https://homematic-forum.de/forum/viewtopic.php?f=65&t=62074))
49+
#### RaspberryMatic Varianten _ova_ und _intelnuc_ (x86_64)
4450
[![Downloads redmatic-x86_64-$VERSION_ADDON](https://img.shields.io/github/downloads/rdmtc/RedMatic/v$VERSION_ADDON/redmatic-x86_64-$VERSION_ADDON.tar.gz.svg)]($DOWNLOAD_X86_64)
4551
EOL
4652
fi

0 commit comments

Comments
 (0)