From 7b2ff3d6e69235f0a1565dc3df2763a317d2c827 Mon Sep 17 00:00:00 2001 From: itn3000 Date: Wed, 21 Aug 2024 02:11:37 +0900 Subject: [PATCH] fix artifact destination path --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 138dfb5..402492d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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}} \ No newline at end of file