Skip to content

Commit 8d69fbf

Browse files
author
Jan VL
committed
feat(ci): add ARM64 support for all release builds
1 parent 19accc5 commit 8d69fbf

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -331,25 +331,25 @@ jobs:
331331
cp -r include/sparkplug ${PACKAGE_NAME}/include/
332332
fi
333333
334-
cat > ${PACKAGE_NAME}/README.md << "INNEREOF"
335-
# Sparkplug B ${{ matrix.library }} Library (Fedora 42)
336-
337-
Dynamic library build for Fedora 42+.
338-
339-
## Dependencies
340-
341-
```bash
342-
sudo dnf install protobuf abseil-cpp paho-c openssl
343-
```
344-
345-
## Installation
346-
347-
```bash
348-
sudo cp lib/* /usr/local/lib64/
349-
sudo cp -r include/* /usr/local/include/
350-
sudo ldconfig
351-
```
352-
INNEREOF
334+
printf "%s\n" \
335+
"# Sparkplug B ${{ matrix.library }} Library (Fedora 42)" \
336+
"" \
337+
"Dynamic library build for Fedora 42+." \
338+
"" \
339+
"## Dependencies" \
340+
"" \
341+
"\`\`\`bash" \
342+
"sudo dnf install protobuf abseil-cpp paho-c openssl" \
343+
"\`\`\`" \
344+
"" \
345+
"## Installation" \
346+
"" \
347+
"\`\`\`bash" \
348+
"sudo cp lib/* /usr/local/lib64/" \
349+
"sudo cp -r include/* /usr/local/include/" \
350+
"sudo ldconfig" \
351+
"\`\`\`" \
352+
> ${PACKAGE_NAME}/README.md
353353
354354
tar czf ${PACKAGE_NAME}.tar.gz ${PACKAGE_NAME}
355355
'

0 commit comments

Comments
 (0)