Skip to content

Commit

Permalink
v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeet-chand committed Jun 8, 2024
1 parent e601abb commit a4201df
Showing 1 changed file with 5 additions and 20 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,16 @@ jobs:
- name: Build for Windows
run: |
pyinstaller --onefile --noconsole --icon=assets/view_earth.ico --name=Heroes3MapLiker_windows Heroes3MapLiker.py
- name: List current directory contents
run: |
echo "Contents of current directory:"
dir
pyinstaller --onefile --noconsole --icon=assets/view_earth.ico --name=Heroes3MapLiker Heroes3MapLiker.py
- name: Run Windows Tests
run: python tests.py --platform windows
run: python tests.py

- name: Upload windows artifact
uses: actions/upload-artifact@v2
with:
name: windows-binaries
path: Heroes3MapLiker_windows.exe
path: Heroes3MapLiker.exe
if: success()

build_and_test_macos:
Expand All @@ -63,13 +58,8 @@ jobs:
run: |
pyinstaller --onefile --noconsole --icon=assets/view_earth.ico --name=Heroes3MapLiker_macos Heroes3MapLiker.py
- name: List current directory contents
run: |
echo "Contents of current directory:"
ls
- name: Run macOS Tests
run: python tests.py --platform macos
run: python tests.py

- name: Upload mac artifact
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -101,13 +91,8 @@ jobs:
run: |
pyinstaller --onefile --noconsole --icon=assets/view_earth.ico --name=Heroes3MapLiker_linux Heroes3MapLiker.py
- name: List current directory contents
run: |
echo "Contents of current directory:"
ls
- name: Run Linux Tests
run: python tests.py --platform linux
run: python tests.py

- name: Upload linux artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit a4201df

Please sign in to comment.