Skip to content

Commit

Permalink
Changed extracting path of pyinstaller from /tmp to /opt/netfoundry
Browse files Browse the repository at this point in the history
  • Loading branch information
emoscardini committed Oct 4, 2023
1 parent 1982379 commit 1addfec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 24 deletions.
30 changes: 6 additions & 24 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Use pyinstall to create distribution binary
run: pyinstaller -F support_bundle_bootstrap.py
run: pyinstaller -F support_bundle_bootstrap.py --runtime-tmpdir /opt/netfoundry/
- name: version
run: echo "version=$(./dist/support_bundle -v)" >> $GITHUB_ENV
id: version
Expand All @@ -34,33 +34,15 @@ jobs:
run: cd dist; mv support_bundle_bootstrap vm-support-bundle; tar -zcvf support_bundle_bootstrap.tar.gz vm-support-bundle
- name: Tar main script
run: cd dist; mv support_bundle .support_bundle; tar cfvz support_bundle.tar.gz .support_bundle

- 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 }}
tag: v${{ env.version }}
artifacts: "dist/support_bundle_bootstrap.tar.gz,dist/support_bundle.tar.gz"
artifactContentType: application/gzip
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Upload support_bundle bootstrap release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: dist/support_bundle_bootstrap.tar.gz
asset_name: support_bundle_bootstrap.tar.gz
asset_content_type: application/gzip

- name: Upload support_bundle release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: dist/support_bundle.tar.gz
asset_name: support_bundle.tar.gz
asset_content_type: application/gzip
Binary file modified dist/support_bundle
Binary file not shown.

0 comments on commit 1addfec

Please sign in to comment.