From 71957501d9ee8bc33f7370bfda478c4606d540d5 Mon Sep 17 00:00:00 2001 From: KGN Date: Tue, 23 Jan 2024 10:55:23 -0500 Subject: [PATCH] Semver naming --- .github/workflows/CI.yml | 10 ++++------ package.json | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a9631fcd5..4db68f612 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -70,12 +70,10 @@ jobs: PACKAGE_VERSION=`node -e "console.log(require('./src/package.json').version)"` mkdir -p releases/linux ls -al output - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-x86_64.AppImage" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-linux-x86_64.AppImage" - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-amd64.deb" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-linux-amd64.deb" - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-armv7l.AppImage" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-linux-armv7l.AppImage" - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-armv7l.deb" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-linux-armv7l.deb" - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-arm64.AppImage" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-linux-arm64.AppImage" - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-arm64.deb" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-linux-arm64.deb" + cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-x86_64.AppImage" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-Linux-Intel-64Bit.AppImage" + cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-amd64.deb" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-Linux-Intel-64Bit.deb" + cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-arm64.AppImage" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-Linux-ARM-64Bit.AppImage" + cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-arm64.deb" "releases/linux/${PACKAGE_NAME}-${PACKAGE_VERSION}-Linux-ARM-64Bit.deb" ls -al output releases/linux if [[ "$GITHUB_REF_TYPE" == "branch" && "$GITHUB_REF_NAME" == "master" ]]; then yarn github-release delete \ diff --git a/package.json b/package.json index f573260d0..c198539d0 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "build:linux-ia32": "bash -c 'scripts/electron-builder.sh --linux --ia32'", "build:linux-x64": "bash -c 'scripts/electron-builder.sh --linux --x64'", "build:linux-armv7l": "bash -c 'scripts/electron-builder.sh --linux --armv7l'", - "build:linux": "bash -c 'scripts/electron-builder.sh --linux --x64 --arm64 --armv7l'", + "build:linux": "bash -c 'scripts/electron-builder.sh --linux --x64 --arm64'", "build:linux-arm64": "bash -c 'scripts/electron-builder.sh --linux --arm64'", "build:windows-ia32": "bash -c 'scripts/electron-builder.sh --windows --ia32'", "build:windows-x64": "bash -c 'scripts/electron-builder.sh --windows --x64'",