Skip to content

Commit

Permalink
workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
vil committed Aug 2, 2023
1 parent 675177e commit 6acb2ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
Expand All @@ -21,17 +21,17 @@ jobs:
run: |
pyinstaller --onefile h4xtools.py
- name: Upload Windows artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Windows Executable
path: dist/

build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
pyinstaller --onefile -F h4xtools.py
- name: Upload Linux artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Linux Executable
path: dist/

0 comments on commit 6acb2ea

Please sign in to comment.