Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
Bugfix in artifact upload of MacOs. Added names for upload actions
  • Loading branch information
f1shl authored Jul 25, 2024
1 parent 2a9fbd3 commit 7421a3e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,20 @@ jobs:
bash build_executable_mac.sh
# Now flag the created file as unix executable
chmod +x "dist/Nami Beitragsrechner"
- uses: actions/upload-artifact@v4
- name: Upload Mac OS binaries
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: nami-beitragsrechner-mac
path: dist/*.
path: dist/*
- name: Build Windows OS
if: matrix.os == 'windows-latest'
shell: powershell
run: |
./build_executable_win.ps1
- uses: actions/upload-artifact@v4
- name: Upload Windows OS binaries
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: nami-beitragsrechner-win
path: dist/*.exe
Expand Down

0 comments on commit 7421a3e

Please sign in to comment.