We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4537b98 commit c34fe89Copy full SHA for c34fe89
.github/workflows/ci.yml
@@ -59,6 +59,10 @@ jobs:
59
name: Build
60
run: |
61
make TARGETPLATFORM=${{ matrix.platform }} static
62
+ -
63
+ name: List files
64
+ run: |
65
+ tree -nh ./static/build
66
-
67
name: Upload static packages
68
uses: actions/upload-artifact@v2
static/build-static
@@ -343,3 +343,15 @@ case ${TARGETOS} in
343
)
344
;;
345
esac
346
+
347
+# create bundle
348
+bundlePlatform="${TARGETOS}-${TARGETARCH}"
349
+if [ -n "$TARGETVARIANT" ]; then
350
+ bundlePlatform="${bundlePlatform}-${TARGETVARIANT}"
351
+fi
352
+(
353
+ set -x
354
+ cd "${buildDir}"
355
+ rm -r */
356
+ tar -zvcf "${CURDIR}/build/bundles-ce-static-${bundlePlatform}.tar.gz" .
357
+)
0 commit comments