move repo #1
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: Build and Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyinstaller | |
pip install -r requirements.txt | |
- name: Build application | |
run: pyinstaller --onefile src/jjkiller.py | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: jjkiller | |
path: dist/jjkiller | |
- name: Create release | |
id: create_release | |
uses: softprops/[email protected] | |
with: | |
files: dist/jjkiller |