From f597e24ff7d6383c4647b800c91d67e6dfc130b8 Mon Sep 17 00:00:00 2001 From: real-zony Date: Thu, 22 Sep 2022 19:17:21 +0800 Subject: [PATCH] ci: Fixed path issue. --- .github/workflows/dotnet.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0ccb088..35d03b6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -48,16 +48,12 @@ jobs: uses: actions/download-artifact@v3 with: name: release-files - path: ./TempFiles - - name: echo - run: | - ls -a - ls -a ./TempFiles -# - name: Upload Release -# uses: ncipollo/release-action@v1 -# with: -# artifacts: "./TempFiles/*.zip" -# token: ${{ secrets.GITHUBACTIONS }} -# tag: ZonyLrcToolsX_Alpha.${{ steps.date.outputs.date }} -# commit: dev -# bodyFile: ./TempFiles/release.md \ No newline at end of file + path: . + - name: Upload Release + uses: ncipollo/release-action@v1 + with: + artifacts: "./TempFiles/*.zip" + token: ${{ secrets.GITHUBACTIONS }} + tag: ZonyLrcToolsX_Alpha.${{ steps.date.outputs.date }} + commit: dev + bodyFile: ./versions/release.md \ No newline at end of file