File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 3535 NUGET_API_KEY : ${{ secrets.NUGET_API_KEY }}
3636 run : dotnet nuget push "./nupkg/*.nupkg" --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
3737
38+ - name : Notify Slack
39+ if : success()
40+ env :
41+ SLACK_WEBHOOKS_URL : ${{ secrets.SLACK_WEBHOOKS_URL }}
42+ run : |
43+ curl -X POST -H 'Content-type: application/json' --data '{
44+ "text": "📦 *Initium* package *v${{ env.new_build }}* has been published to NuGet Packages."
45+ }' $SLACK_WEBHOOKS_URL
46+
3847 - name : Push to GitHub NuGet
3948 env :
4049 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 66 <Nullable >enable</Nullable >
77 <AssemblyName >Initium</AssemblyName >
88 <RootNamespace >Initium</RootNamespace >
9- <Version >0.1.20 </Version >
9+ <Version >0.1.23 </Version >
1010 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
1111 <PackageId >Initium</PackageId >
1212 <Title >Initium</Title >
You can’t perform that action at this time.
0 commit comments