Skip to content

Commit

Permalink
Merge pull request #785 from skalenetwork/fix-os-version-check
Browse files Browse the repository at this point in the history
 Fix OS version check
  • Loading branch information
DmytroNazarenko authored Sep 27, 2024
2 parents f8e1fa0 + 198d1e4 commit ae52add
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- develop
- beta
- stable
- v*.*.*
- 'v*.*.*'

jobs:
create_release:
Expand Down
7 changes: 7 additions & 0 deletions node_cli/operations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,13 @@ def turn_off():

def turn_on(env):
logger.info('Turning on the node...')
update_meta(
VERSION,
env['CONTAINER_CONFIGS_STREAM'],
env['DOCKER_LVMPY_STREAM'],
distro.id(),
distro.version()
)
if env.get('SKIP_DOCKER_CONFIG') != 'True':
configure_docker()
logger.info('Launching containers on the node...')
Expand Down

0 comments on commit ae52add

Please sign in to comment.