-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included Debug Symbols in the main NuGet Package
- Loading branch information
1 parent
ed95645
commit fb44d97
Showing
3 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,15 @@ jobs: | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
run: dotnet nuget push "${{ env.PROJECT_NAME }}/bin/Release/*.nupkg" -k ${{ secrets.NUGET_APIKEY }} -s "https://api.nuget.org/v3/index.json" --skip-duplicate | ||
|
||
# Step 9 - Create New Release | ||
# Step 9 - Generate the Changelog | ||
- name: Generate the Changelog | ||
id: changelog | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
uses: metcalfc/[email protected] | ||
with: | ||
myToken: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Step 10 - Create New Release | ||
- name: Create New Release | ||
id: create-release | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
|
@@ -68,8 +76,6 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.CI_REF_NAME }} | ||
release_name: ${{ env.PROJECT_NAME }} ${{ env.CI_REF_NAME }} | ||
release_name: Version ${{ env.CI_REF_NAME }} | ||
body: | | ||
${{ env.PROJECT_NAME }} Version ${{ env.CI_REF_NAME }} | ||
Built Automatically with :heart: using GitHub Actions | ||
${{ steps.changelog.outputs.changelog }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# dotnet-unitronics | ||
# RICADO.Unitronics | ||
A Unitronics PLC Communication Library for .NET 5 Applications |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters