Skip to content

Commit 696db45

Browse files
committed
Update the Update
1 parent 10da223 commit 696db45

1 file changed

Lines changed: 8 additions & 14 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,13 @@ jobs:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747

4848
# Create or update Release with fix tag "latest"
49-
- name: Create or Update Latest Release
50-
uses: softprops/action-gh-release@v2
51-
with:
52-
tag_name: latest
53-
name: "v${{ env.BUILD_VERSION }} (Latest)"
54-
body: |
55-
Automated build **v${{ env.BUILD_VERSION }}**
56-
- Build number: ${{ github.run_number }}
57-
- Commit: ${{ github.sha }}
58-
- Triggered by: ${{ github.actor }}
59-
draft: false
60-
prerelease: false
61-
files: |
62-
latest-release.zip
49+
- name: Create Latest Release
50+
run: |
51+
gh release create latest latest-release.zip `
52+
--title "v${{ env.BUILD_VERSION }} (Latest)" `
53+
--notes "Automated build **v${{ env.BUILD_VERSION }}**
54+
- Build number: ${{ github.run_number }}
55+
- Commit: ${{ github.sha }}
56+
- Triggered by: ${{ github.actor }}"
6357
env:
6458
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)