-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fba4d01
commit e4b8a53
Showing
9 changed files
with
77 additions
and
179 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: release-please | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: release-please | ||
id: release | ||
uses: googleapis/release-please-action@v4 | ||
with: | ||
token: ${{ secrets.RELEASE_PLEASE_PAT }} | ||
|
||
- name: 🛒 Checkout repository | ||
if: ${{ steps.release.outputs.release_created }} | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.RELEASE_PLEASE_PAT }} | ||
|
||
- name: ⚙️ Setup dotnet 8.0.x | ||
if: ${{ steps.release.outputs.release_created }} | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '8.0.x' | ||
|
||
- name: 🧹 Clean | ||
if: ${{ steps.release.outputs.release_created }} | ||
run: dotnet clean -c Release && dotnet nuget locals all --clear | ||
|
||
- name: 🔁 Restore packages | ||
if: ${{ steps.release.outputs.release_created }} | ||
run: dotnet restore | ||
|
||
- name: 🛠️ Building library in release mode | ||
if: ${{ steps.release.outputs.release_created }} | ||
run: dotnet build -c Release --no-restore /p:UseSourceLink=true | ||
|
||
- name: 🗳️ Creating library package for release | ||
if: ${{ steps.release.outputs.release_created }} | ||
run: dotnet pack -c Release --no-restore -o ${GITHUB_WORKSPACE}/packages /p:PublicRelease=true | ||
|
||
- name: 📦 Push packages to NuGet | ||
if: ${{ steps.release.outputs.release_created }} | ||
run: | | ||
dotnet nuget push ${GITHUB_WORKSPACE}/packages/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
".": "1.0.8" | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", | ||
"release-type": "simple", | ||
"bootstrap-sha": "fba4d0158b0373d80f6fe37da2c3c9e4073ff703", | ||
"pull-request-title-pattern": "chore: release version ${version}", | ||
"packages": { | ||
".": { | ||
} | ||
}, | ||
"extra-files": [ | ||
"Directory.Build.props" | ||
] | ||
} |
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
This file was deleted.
Oops, something went wrong.