diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 8d8980d..9d31935 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -29,7 +29,7 @@ jobs: run: dotnet publish D:\a\ATA-GUI\ATA-GUI\ATA-GUI\ATA-GUI.csproj --configuration Release --runtime win-x64 --self-contained false /p:PublishSingleFile=true --output ./publish - name: Zip the published output - run: Compress-Archive -Path ./publish/ATA-GUI.exe, ./LICENSE -DestinationPath ATA-GUI_${{ steps.previoustag.outputs.tag }}.zip + run: Compress-Archive -Path ./publish/ATA-GUI.exe, ./LICENSE -DestinationPath ATA-GUI.zip shell: pwsh - name: Get Previous tag @@ -40,7 +40,7 @@ jobs: uses: ncipollo/release-action@v1.14.0 with: generateReleaseNotes: true - artifacts: ATA-GUI_${{ steps.previoustag.outputs.tag }}.zip + artifacts: ATA-GUI.zip name: ${{ steps.previoustag.outputs.tag }} tag: ${{ steps.previoustag.outputs.tag }} token: ${{ secrets.GITHUB_TOKEN }}