Skip to content

Commit

Permalink
Upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
vil committed Jun 26, 2023
1 parent a7ea968 commit 75463a2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PyInstaller
name: Build executable

on: [push]

Expand All @@ -15,6 +15,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: build with pyinstaller
- name: Build with pyinstaller
run: |
pyinstaller --onefile h4xtools.py
pyinstaller --onefile h4xtools.py
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: Executable
path: dist/

0 comments on commit 75463a2

Please sign in to comment.