kopia lustrzana https://github.com/inkstitch/inkstitch
28 wiersze
978 B
Bash
Executable File
28 wiersze
978 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION="$(echo ${GITHUB_REF} | sed -e 's|refs/heads/||' -e 's|refs/tags/||' -e 's|/|-|g')"
|
|
OS="${BUILD:-$(uname)}"
|
|
ARCH="$(uname -m)"
|
|
|
|
if [ "$BUILD" = "osx" ]; then
|
|
cp -a images/examples palettes symbols fonts inx LICENSE VERSION dist/inkstitch.app/Contents
|
|
cp -a icons locales print dist/inkstitch.app/Contents/MacOS
|
|
cp -a electron/build/mac dist/inkstitch.app/Contents/electron
|
|
rm -rf dist/inkstitch/
|
|
else
|
|
cp -a images/examples palettes symbols fonts inx LICENSE VERSION dist/inkstitch
|
|
cp -a icons locales print dist/inkstitch/bin
|
|
cp -a electron/build/*-unpacked dist/inkstitch/electron
|
|
fi
|
|
|
|
mkdir artifacts
|
|
cd dist
|
|
|
|
if [ "$$BUILD" = "windows" ]; then
|
|
# The python zipfile command line utility can't handle directories
|
|
# containing files with UTF-8 names on Windows, so we use 7-zip instead.
|
|
7z a ../artifacts/inkstitch-${VERSION}-${OS}.zip *;
|
|
else
|
|
python -m zipfile -c ../artifacts/inkstitch-${VERSION}-${OS}.zip *;
|
|
fi
|