v3.0.2 - Hotfix Lang Add #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python application | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install pyinstaller | |
- name: Package app with pyinstaller | |
run: | | |
python -c "with open('smassh.py', 'w') as f: f.write('from smassh.__init__ import main\nmain()\n')" | |
pyinstaller -F smassh.py --add-data="smassh/ui/css/:smassh/ui/css" | |
# Setup File name | |
- name: Set Binary file name on Linux and Mac | |
if: matrix.os != 'windows-latest' | |
run: echo "BINARY_FILE_NAME=smassh" >> $GITHUB_ENV | |
- name: Set Binary file name on Windows | |
if: matrix.os == 'windows-latest' | |
run: Add-Content -Path $env:GITHUB_ENV -Value "BINARY_FILE_NAME=smassh.exe" | |
# Setup final release file names | |
- name: Set Final file name on Linux | |
if: matrix.os == 'ubuntu-latest' | |
run: echo "FINAL_FILE_NAME=linux-smassh" >> $GITHUB_ENV | |
- name: Set Final file name on MacOs | |
if: matrix.os == 'macos-latest' | |
run: echo "FINAL_FILE_NAME=macos-smassh" >> $GITHUB_ENV | |
- name: Set Final file name on Windows | |
if: matrix.os == 'windows-latest' | |
run: Add-Content -Path $env:GITHUB_ENV -Value "FINAL_FILE_NAME=windows-smassh.exe" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: ./dist/${{ env.FINAL_FILE_NAME }} |