create executable
This commit is contained in:
parent
3ee74bcbfa
commit
dedcf83dfa
1 changed files with 21 additions and 0 deletions
21
.github/workflows/release.yml
vendored
Normal file
21
.github/workflows/release.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue