Skip to content

Commit

Permalink
Merge pull request #33 from netfoundry/remove_port_80_check
Browse files Browse the repository at this point in the history
Changed extracting path of pyinstaller from /tmp to /opt/netfoundry
  • Loading branch information
emoscardini authored Oct 4, 2023
2 parents 291ebc6 + d5079b8 commit 3f32cd3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Use pyinstall to create router_registration_bootstrap distribution binary
run: wget https://raw.githubusercontent.com/netfoundry/ziti_router_auto_enroll/main/ziti_router_auto_enroll.py; pyinstaller -F router_registration_bootstrap.py
run: wget https://raw.githubusercontent.com/netfoundry/ziti_router_auto_enroll/main/ziti_router_auto_enroll.py; pyinstaller -F router_registration_bootstrap.py --runtime-tmpdir /opt/netfoundry/
- name: Use pyinstall to create router_registration distribution binary
run: pyinstaller -F router_registration.py
run: pyinstaller -F router_registration.py --runtime-tmpdir /opt/netfoundry/

- name: version
run: echo "version=$(./dist/router_registration -v)" >> $GITHUB_ENV
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2023-10-04

### Changed

- Changed extracting path of pyinstaller from /tmp to /opt/netfoundry

## [1.0.13]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion router_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def create_parser():
:return: A Namespace containing arguments
"""
__version__ = '1.0.13'
__version__ = '1.1.0'
parser = argparse.ArgumentParser()

mgroup = parser.add_mutually_exclusive_group(required=True)
Expand Down

0 comments on commit 3f32cd3

Please sign in to comment.