Skip to content

Commit

Permalink
update release code
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihozpolat committed Jul 30, 2024
1 parent f2deff2 commit 738c080
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet publish --configuration Release --output ./publish
- name: Create Release
uses: actions/create-release@v1
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: 'A new release has been created'
draft: false
prerelease: false
files: './publish/**'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
files: ./publish/*
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ github.ref }}

0 comments on commit 738c080

Please sign in to comment.