Skip to content

Commit

Permalink
fix artifact destination path
Browse files Browse the repository at this point in the history
  • Loading branch information
itn3000 committed Aug 20, 2024
1 parent 73460fa commit 7b2ff3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
- name: list files
run: "Get-ChildItem -recurse artifacts"
- name: upload zip to gh release
run: gh release upload ${{github.event.release.tag_name}} artifacts/WEventViewer-win-x64/WEventViewer-win-x64.zip
run: gh release upload ${{github.event.release.tag_name}} artifacts/WEventViewer-win-x64.zip
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: upload msi to gh release
run: gh release upload ${{github.event.release.tag_name}} artifacts/WEventViewer-installer/WEventViewer.Installer.msi
run: gh release upload ${{github.event.release.tag_name}} artifacts/WEventViewer.Installer.msi
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 7b2ff3d

Please sign in to comment.