Skip to content

Commit

Permalink
Merge pull request #12 from netfoundry/change_extraction_directory
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 6b7b989 + 81be437 commit e22731a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 25 deletions.
31 changes: 7 additions & 24 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Use pyinstall to create distribution binary
run: pyinstaller -F router_upgrade_bootstrap.py
run: pyinstaller -F router_upgrade_bootstrap.py --runtime-tmpdir /opt/netfoundry/
- name: Use pyinstall to create main binary
run: pyinstaller -F router_upgrade.py
run: mkdir /opt/netfoundry; pyinstaller -F router_upgrade.py --runtime-tmpdir /opt/netfoundry/
- name: version
run: echo "version=$(./dist/router_upgrade -v)" >> $GITHUB_ENV
id: version
Expand All @@ -37,33 +37,16 @@ jobs:
- name: Tar main script
# tar with previous distibuted name for backwards compatibility
run: cd dist; mv router_upgrade .router_upgrade; tar -zcvf router_upgrade.tar.gz .router_upgrade

- name: release
uses: actions/create-release@v1
uses: ncipollo/release-action@v1
id: release
with:
draft: false
prerelease: false
release_name: v${{ env.version }}
tag_name: v${{ env.version }}
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Upload router_upgrade bootstrap release
uses: actions/upload-release-asset@v1
tag: v${{ env.version }}
artifacts: "dist/router_upgrade_bootstrap.tar.gz,dist/router_upgrade.tar.gz"
artifactContentType: application/gzip
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: dist/router_upgrade_bootstrap.tar.gz
asset_name: router_upgrade_bootstrap.tar.gz
asset_content_type: application/gzip

- name: Upload router_upgrade release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: dist/router_upgrade.tar.gz
asset_name: router_upgrade.tar.gz
asset_content_type: application/gzip
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.2.0] - 2023-10-04

### Changed

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


## [1.1.2] - 2023-07-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion router_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def main():
"""
Main logic
"""
__version__ = '1.1.2'
__version__ = '1.2.0'
# Change log
# See https://github.com/netfoundry/edge-router-upgrade/blob/main/CHANGELOG.md

Expand Down

0 comments on commit e22731a

Please sign in to comment.