Skip to content

Commit

Permalink
Create release
Browse files Browse the repository at this point in the history
  • Loading branch information
Saibamen committed May 13, 2022
1 parent b206fe1 commit 0b362da
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,13 @@ jobs:
run: dotnet pack --configuration Release **/${{ env.PACKAGE_3 }}.csproj
- name: Create package ${{ env.PACKAGE_4 }}
run: dotnet pack --configuration Release **/${{ env.PACKAGE_4 }}.csproj
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
prerelease: true
- name: Push packages
run: dotnet nuget push "**/*.nupkg"

0 comments on commit 0b362da

Please sign in to comment.