Skip to content

Commit

Permalink
bugfix: fixing copy-pasta
Browse files Browse the repository at this point in the history
Small copy-pasta error in workflow fixed
  • Loading branch information
atma-stackoverflow committed Feb 24, 2021
1 parent 5abeed8 commit 61c772e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: patcher-client-${{ steps.versioner.outputs.RELEASE_VERSION }}-1.x86_64.rpm
asset_name: patcher-client-${{ steps.versioner.outputs.RELEASE_VERSION }}-1.x86_64.rpm
asset_path: pat-${{ steps.versioner.outputs.RELEASE_VERSION }}-1.x86_64.rpm
asset_name: pat-${{ steps.versioner.outputs.RELEASE_VERSION }}-1.x86_64.rpm
asset_content_type: application/x-rpm

- name: Upload DEB
Expand All @@ -76,8 +76,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: patcher-client_${{ steps.versioner.outputs.RELEASE_VERSION }}_amd64.deb
asset_name: patcher-client_${{ steps.versioner.outputs.RELEASE_VERSION }}_amd64.deb
asset_path: pat_${{ steps.versioner.outputs.RELEASE_VERSION }}_amd64.deb
asset_name: pat_${{ steps.versioner.outputs.RELEASE_VERSION }}_amd64.deb
asset_content_type: application/vnd.debian.binary-package

- name: Upload NuGet
Expand All @@ -86,7 +86,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: patcher-client.${{ steps.versioner.outputs.RELEASE_VERSION}}.nupkg
asset_name: patcher-client.${{ steps.versioner.outputs.RELEASE_VERSION}}.nupkg
asset_path: pat.${{ steps.versioner.outputs.RELEASE_VERSION}}.nupkg
asset_name: pat.${{ steps.versioner.outputs.RELEASE_VERSION}}.nupkg
asset_content_type: application/octet-stream

0 comments on commit 61c772e

Please sign in to comment.