Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ekolis committed Feb 11, 2022
1 parent 8fa0dbb commit 75cf398
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
maxLength: 10
- name: List Files
run: ls -s .\FrEee.WinForms\bin\Release\net6.0-windows
- name: Create Release
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
Expand All @@ -53,9 +53,14 @@ jobs:
release_name: Auto-Build Release ${{steps.createReleaseTag.outputs.string}}
draft: false
prerelease: true
- name: Upload Assets
- name: Zip assets
uses: papeloto/action-zip@v1
with:
files: ./FrEee.WinForms/bin/Release/net6.0-windows
dest: FrEee-binary.zip
- name: Upload assets
uses: alexellis/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
asset_paths: '["./FrEee.WinForms/bin/Release/net6.0-windows/*"]'
asset_paths: '["FrEee-binary.zip"]'

0 comments on commit 75cf398

Please sign in to comment.