Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump google-github-actions/release-please-action from 3 to 4 #116

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/call-release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ jobs:
steps:
- name: ✨ Release Please
id: release
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v4
with:
bootstrap-sha: c99f654b0c88658aeb7437e3acb93330cceda23b
release-type: simple
extra-files: |
src/Directory.Build.props
config-file: release-please/config.json
manifest-file: release-please/manifest.json

publish:
name: 📦 Publish to NuGet
Expand All @@ -44,13 +42,13 @@ jobs:

- name: 📦 Pack
run: >
dotnet pack
dotnet pack
--configuration Release

- name: 🚀 Push
run: >
dotnet nuget push
**.nupkg
-k ${{ secrets.nuget_api_key }}
-s https://api.nuget.org/v3/index.json
dotnet nuget push
**.nupkg
-k ${{ secrets.nuget_api_key }}
-s https://api.nuget.org/v3/index.json
--skip-duplicate
26 changes: 26 additions & 0 deletions release-please/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "simple",
"extra-files": ["src/Directory.Build.props"],
"changelog-sections": [
{
"type": "feat",
"section": "🚀 Features",
"hidden": false
},
{
"type": "fix",
"section": "🐛 Bug Fixes",
"hidden": false
},
{
"type": "build",
"section": "📦️ Build System, Dependencies",
"hidden": false
}
]
}
}
}
3 changes: 3 additions & 0 deletions release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "9.1.0"
}