Correct release artifact names

This commit is contained in:
Philip Kristoffersen
2021-09-26 08:29:34 +02:00
committed by GitHub
parent cfc21e7226
commit f46bc063c3
+3 -1
View File
@@ -32,10 +32,12 @@ jobs:
include: include:
- os: ubuntu-latest - os: ubuntu-latest
file: target/release/steam_shortcuts_sync file: target/release/steam_shortcuts_sync
asset_name: linux_steam_shortcuts_sync
args: --best --lzma args: --best --lzma
strip: true strip: true
- os: windows-latest - os: windows-latest
file: target/release/steam_shortcuts_sync.exe file: target/release/steam_shortcuts_sync.exe
asset_name: windows_steam_shortcuts_sync.exe
args: -9 args: -9
strip: false strip: false
steps: steps:
@@ -59,5 +61,5 @@ jobs:
with: with:
upload_url: ${{ needs.once.outputs.upload_url }} upload_url: ${{ needs.once.outputs.upload_url }}
asset_path: ${{ github.workspace }}/${{ matrix.file }} asset_path: ${{ github.workspace }}/${{ matrix.file }}
asset_name: steam_shortcuts_sync-${{ matrix.os }} asset_name: ${{ matrix.asset_name }}
asset_content_type: application/octet-stream asset_content_type: application/octet-stream