Skip to content

Commit

Permalink
Changed store value
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Jan 16, 2024
1 parent 25100d9 commit 7d38844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/app/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
};
}

Expand Down

0 comments on commit 7d38844

Please sign in to comment.