Skip to content

Merge pull request #24 from 0xjairo/master #46

Merge pull request #24 from 0xjairo/master

Merge pull request #24 from 0xjairo/master #46

name: PyInstaller Windows
on: push
jobs:
build:
name: Build windows installer
runs-on: windows-latest
strategy:
matrix:
python_arch: [ x64, x86 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
architecture: ${{ matrix.python_arch }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller==5.0
pip install -r requirements.txt
- name: build with pyinstaller
run: |
pyinstaller px100.spec
- name: Build NSIS installer package
run: |
makensis -VERSION
makensis "/XOutFile Battery-Tester-PX100-${{matrix.python_arch}}.exe" px100.nsi
- name: Upload installer artifact
uses: actions/upload-artifact@v2
with:
name: installer${{matrix.python_arch}}
path: Battery-Tester*
release:
name: Prepare a release
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Download installer artifacts
uses: actions/download-artifact@v2
- name: List files
run: |
ls -l
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload x64 binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Battery-Tester-PX100-x64.exe
asset_name: Battery-Tester-PX100-x64.exe
asset_content_type: application/exe
- name: Upload win32 binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Battery-Tester-PX100-x86.exe
asset_name: Battery-Tester-PX100-x86.exe
asset_content_type: application/exe