diff options
| author | rejbasket <39080670+rejbasket@users.noreply.github.com> | 2025-04-13 21:53:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 21:53:06 +0200 |
| commit | 91ffe0ceca53091d4de0e9bbbca0560998bb7967 (patch) | |
| tree | be4810a622c9e7f0d27658059c9c847dc17a1233 /bin/build-distribution-archives | |
| parent | 6681593cb2db39b6ab35d5b44066212e9d68b979 (diff) | |
moved mkdir artifacts to build-python (#3667)
check to build artifacts folder for signed or local build
Co-authored-by: rejbasket <rejbasket@users.noreply.github.com>
Diffstat (limited to 'bin/build-distribution-archives')
| -rw-r--r-- | bin/build-distribution-archives | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/build-distribution-archives b/bin/build-distribution-archives index 26ec26e3..c194a81b 100644 --- a/bin/build-distribution-archives +++ b/bin/build-distribution-archives @@ -1,7 +1,6 @@ VERSION="${VERSION:-$(echo ${GITHUB_REF} | sed -e 's|refs/heads/||' -e 's|refs/tags/||' -e 's|/|-|g')}" OS="${BUILD:-$(uname)}" ARCH="$(uname -m)" -mkdir artifacts if [ "$BUILD" = "osx" ]; then cp -a addons icons locales print LICENSE VERSION palettes symbols fonts tiles dbus inx dist/inkstitch.app/Contents/Resources @@ -104,7 +103,7 @@ if [ "$BUILD" = "windows" ]; then fi fi -if [ "$BUILD" = "linux" ] || [ "$BUILD" = "linux-new" ] || [ "$BUILD" = "linux-old" ] || [ "$BUILD" = "linux32" ]; then +if [ "$BUILD" = "linux" ] || [ "$BUILD" = "linux32" ]; then if [[ "$VERSION" =~ ^v[0-9][.0-9]+$ ]]; then VERSION=${VERSION#v} else |
