This commit is contained in:
Edward R. Gonzalez 2023-03-30 22:50:01 -04:00
parent bdc272cc2b
commit d344043c44

View File

@ -96,13 +96,13 @@ jobs:
New-Item -ItemType Directory -Path "./artifact" New-Item -ItemType Directory -Path "./artifact"
Copy-Item "./build/refactor.exe" -Destination "./artifact/refactor.exe" 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 - name: Upload Release
uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
with: with:
tag: Release tag: Release
artifacts: ./artifact/refactor-${env:SHORT_SHA}.zip artifacts: ./artifact/refactor-${{env:SHORT_SHA}}.zip
omitBody: true omitBody: true
# bodyFile: "body.md" # bodyFile: "body.md"
allowUpdates: true allowUpdates: true