Skip to content

Commit

Permalink
Fix artifact naming and downloading in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Paullux committed May 19, 2024
1 parent 727630d commit 2876684
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.UPLOAD_URL }}
asset_path: ubuntu-latest-app/APPIPTV-Linux.zip
asset_name: APPIPTV-Linux.zip
asset_path: ubuntu-latest-app/APPIPTV-Linux
asset_name: APPIPTV-Linux
asset_content_type: application/zip

- name: Upload Release Asset for Windows
Expand All @@ -174,8 +174,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.UPLOAD_URL }}
asset_path: windows-latest-app/APPIPTV-Windows.zip
asset_name: APPIPTV-Windows.zip
asset_path: windows-latest-app/APPIPTV-Windows
asset_name: APPIPTV-Windows
asset_content_type: application/zip

- name: Upload Release Asset for macOS
Expand All @@ -184,6 +184,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.UPLOAD_URL }}
asset_path: macos-latest-app/APPIPTV-macOS.zip
asset_name: APPIPTV-macOS.zip
asset_path: macos-latest-app/APPIPTV-macOS
asset_name: APPIPTV-macOS
asset_content_type: application/zip

0 comments on commit 2876684

Please sign in to comment.