create executable

This commit is contained in:
Waylon Walker 2022-12-31 14:42:43 -06:00
parent 3ee74bcbfa
commit dedcf83dfa
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

21
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Release
on:
workflow_dispatch:
push:
branches:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: pip install -r requirements.txt
- run: pyinstaller creeper.py
- name: Step 3 - Use the Upload Artifact GitHub Action
uses: actions/upload-artifact@v2
with:
name: assets-for-download
path: dist