release #6
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: release | |
on: | |
workflow_dispatch: | |
release: | |
branches: | |
- master | |
types: | |
- released | |
env: | |
RELEASE_TAG: ${{ github.ref }} | |
PYTHONUTF8: 1 | |
PYTHONIOENCODING: UTF-8 | |
jobs: | |
pypi: | |
strategy: | |
matrix: | |
env-version: | |
- os: "ubuntu-latest" | |
python: 3.11.1 | |
runs-on: ${{ matrix.env-version.os }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: setup python${{ matrix.env-version.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.env-version.python }} | |
- name: setup pip | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install --upgrade click==8.0.2 | |
- name: install | |
run: make install-dev | |
- name: lint | |
run: make lint | |
- name: coverage | |
run: make coverage | |
- name: publish | |
run: make publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
binary: | |
strategy: | |
matrix: | |
env-version: | |
- os: ubuntu-latest | |
python: 3.11.1 | |
binary: whispers.elf | |
- os: macos-latest | |
python: 3.11.1 | |
binary: whispers.mac | |
- os: windows-latest | |
python: 3.11.1 | |
binary: whispers.exe | |
runs-on: ${{ matrix.env-version.os }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: setup python${{ matrix.env-version.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.env-version.python }} | |
- name: setup pip | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install pyinstaller | |
- name: install | |
run: make install | |
- name: 'whispers.elf: ELF 64-bit LSB executable, x86-64' | |
if: ${{ matrix.env-version.os == 'ubuntu-latest' }} | |
run: | | |
pyinstaller --clean --noconfirm --strip --noupx --console --onefile --add-data 'whispers/config.yml:whispers' --add-data 'whispers/rules/*.yml:whispers/rules' --name ${{ matrix.env-version.binary }} whispers/main.py | |
sha256sum --binary dist/${{ matrix.env-version.binary }} > dist/${{ matrix.env-version.binary }}.sha256.txt | |
dist/${{ matrix.env-version.binary }} --version | |
- name: 'whispers.mac: Mach-O 64-bit x86_64 executable' | |
if: ${{ matrix.env-version.os == 'macos-latest' }} | |
run: | | |
pyinstaller --clean --noconfirm --strip --noupx --console --onefile --add-data 'whispers/config.yml:whispers' --add-data 'whispers/rules/*.yml:whispers/rules' --name ${{ matrix.env-version.binary }} whispers/main.py | |
shasum --binary --algorithm 256 dist/${{ matrix.env-version.binary }} > dist/${{ matrix.env-version.binary }}.sha256.txt | |
dist/${{ matrix.env-version.binary }} --version | |
- name: 'whispers.exe: PE32+ executable (console) x86-64' | |
if: ${{ matrix.env-version.os == 'windows-latest' }} | |
run: | | |
pyinstaller --clean --noconfirm --strip --noupx --console --onefile --add-data 'whispers/config.yml;whispers' --add-data 'whispers/rules/*.yml;whispers/rules' --name ${{ matrix.env-version.binary }} whispers/main.py | |
certUtil -hashfile dist/${{ matrix.env-version.binary }} SHA256 > dist/${{ matrix.env-version.binary }}.sha256.txt | |
dist/${{ matrix.env-version.binary }} --version | |
- name: upload binary | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
asset_name: ${{ matrix.env-version.binary }} | |
file: dist/${{ matrix.env-version.binary }} | |
tag: ${{ env.RELEASE_TAG }} | |
overwrite: true | |
- name: upload binary checksum | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
asset_name: ${{ matrix.env-version.binary }}.sha256.txt | |
file: dist/${{ matrix.env-version.binary }}.sha256.txt | |
tag: ${{ env.RELEASE_TAG }} | |
overwrite: true |