Skip to content

move repo

move repo #1

Workflow file for this run

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