Skip to content

Commit

Permalink
CI: Fixed asset_path for Windows installers
Browse files Browse the repository at this point in the history
Their file names actually include the version.
  • Loading branch information
bjorn committed Mar 23, 2021
1 parent 66bf9cc commit 167e688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,15 +339,15 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Tiled-win64.msi
asset_path: Tiled-${{ needs.version.outputs.version }}-win64.msi
asset_name: Tiled-${{ needs.version.outputs.version }}-win64.msi
asset_content_type: applictaion/x-msi

- name: Upload Windows 32-bit installer
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Tiled-win32.msi
asset_path: Tiled-${{ needs.version.outputs.version }}-win32.msi
asset_name: Tiled-${{ needs.version.outputs.version }}-win32.msi
asset_content_type: applictaion/x-msi

Expand Down

0 comments on commit 167e688

Please sign in to comment.