From 7d38844bc13f6b4d18151bebc3227848b8889dff Mon Sep 17 00:00:00 2001 From: KGN Date: Tue, 16 Jan 2024 10:16:11 -0500 Subject: [PATCH] Changed store value --- .github/workflows/CI.yml | 2 +- src/app/store/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a9631fcd5..f3cdcc3bc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -250,7 +250,7 @@ jobs: PACKAGE_VERSION=`node -e "console.log(require('./src/package.json').version)"` mkdir -p releases/windows ls -al output - cp -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-x64.exe" "releases/windows/gSender-${PACKAGE_VERSION}-Windows-64Bit.exe" + mv -af "output/${PACKAGE_NAME}-${PACKAGE_VERSION}-x64.exe" "releases/windows/gSender-${PACKAGE_VERSION}-Windows-64Bit.exe" ls -al output releases/windows if [[ "$GITHUB_REF_TYPE" == "branch" && "$GITHUB_REF_NAME" == "master" ]]; then yarn github-release delete \ diff --git a/src/app/store/index.js b/src/app/store/index.js index ae8bc9658..ad93ca64c 100644 --- a/src/app/store/index.js +++ b/src/app/store/index.js @@ -24,7 +24,7 @@ if (isElectron()) { const path = window.require('path'); // Require the path module within Electron userData = { - path: path.join(app.getPath('userData'), 'preferences.json') + path: path.join(app.getPath('userData'), 'gsender-0.5.6.json') }; }