Skip to content

Commit

Permalink
update to 0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1seL committed Apr 27, 2023
1 parent 0e97a82 commit 82b4c82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ jobs:
tar -xvzf evernode-se-$os-$version.tar.gz
mkdir -p ton-node
if [[ $os == 'Windows' ]]; then
mv ton_node_startup.exe ton-node/
mv evernode_se.exe ton-node/
else
mv ton_node_startup ton-node/
chmod +x ton-node/ton_node_startup
mv evernode_se ton-node/
chmod +x ton-node/evernode_se
fi
tar -cvf ton-node-$os.tar ton-node
Expand Down
2 changes: 1 addition & 1 deletion lib/apps/ton-node-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import getAppConfig from '../app-config-base.js';

const serviceName = 'ton-node';
const config = getAppConfig(serviceName);
config.binPath = join(config.appPath, (platform() === 'win32' ? 'ton_node_startup.exe' : 'ton_node_startup'));
config.binPath = join(config.appPath, (platform() === 'win32' ? 'evernode_se.exe' : 'evernode_se'));
config.createPidFile = true;
config.paramsStart = ['--blockchain-config', 'blockchain.conf.json', '--config', 'ton-node.conf.json', '--workdir', config.dataPath];

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@everscale-actions/evernode-se",
"version": "0.37.1",
"version": "0.38.0",
"author": "Everscale Actions",
"license": "Apache-2.0",
"type": "module",
Expand Down

0 comments on commit 82b4c82

Please sign in to comment.