Skip to content

Commit

Permalink
feat: add artifact upload for test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BytexGrid committed Dec 26, 2024
1 parent 0537e86 commit 3804dca
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ jobs:
Get-Item ./NeatShift/NeatShift/bin/Release/net6.0-windows/win-x64/publish/NeatShift.exe | Select-Object Name, Length
Get-Item ./NeatShift/NeatShift/bin/Release/net6.0-windows/win-x64/NeatShift-Release.zip | Select-Object Name, Length
# Upload test builds as artifacts
- name: Upload Test Builds
if: env.IS_TEST == 'true'
uses: actions/upload-artifact@v3
with:
name: NeatShift-TestBuild
path: |
./NeatShift/NeatShift/bin/Release/net6.0-windows/win-x64/publish/NeatShift.exe
./NeatShift/NeatShift/bin/Release/net6.0-windows/win-x64/NeatShift-Release.zip
retention-days: 5

- name: Upload Release Assets
if: env.IS_TEST != 'true'
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 3804dca

Please sign in to comment.