From d344043c447c89908b085da71b7d0cd2adfef04b Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 30 Mar 2023 22:50:01 -0400 Subject: [PATCH] ok --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 943f75f..487830e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -96,13 +96,13 @@ jobs: New-Item -ItemType Directory -Path "./artifact" Copy-Item "./build/refactor.exe" -Destination "./artifact/refactor.exe" - Compress-Archive -Path "./artifact/*" -DestinationPath "./artifact/refactor-${env:SHORT_SHA}.zip" + Compress-Archive -Path "./artifact/*" -DestinationPath "./artifact/refactor-$($env:SHORT_SHA).zip" - name: Upload Release uses: ncipollo/release-action@v1 with: tag: Release - artifacts: ./artifact/refactor-${env:SHORT_SHA}.zip + artifacts: ./artifact/refactor-${{env:SHORT_SHA}}.zip omitBody: true # bodyFile: "body.md" allowUpdates: true