-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.55 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Publish
on:
push:
branches:
- master
paths:
- '.github/workflows/publish.yml'
- 'src/**'
- 'resources/**'
workflow_dispatch:
env:
# Disable the .NET logo in the console output.
DOTNET_NOLOGO: true
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# Disable sending .NET CLI telemetry to Microsoft.
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
publish-on-nuget:
name: Publish on NuGet
runs-on: ubuntu-latest
steps:
- name: Setup
uses: butr/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
- name: Pack projects (Release)
run: >-
dotnet pack src/Bannerlord.BuildResources/Bannerlord.BuildResources.csproj --configuration Release -o "./packages";
dotnet pack src/Bannerlord.Module.Sdk/Bannerlord.Module.Sdk.csproj --configuration Release -o "./packages";
dotnet pack src/Bannerlord.BUTRModule.Sdk/Bannerlord.BUTRModule.Sdk.csproj --configuration Release -o "./packages";
dotnet pack src/Bannerlord.DataModule.Sdk/Bannerlord.DataModule.Sdk.csproj --configuration Release -o "./packages";
- name: Push to NuGet
run: dotnet nuget push "./packages/*.nupkg" -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json
- name: Push to GPR
run: |
for f in ./packages/*.nupkg
do
curl -vX PUT -u "vslee:${{secrets.GITHUB_TOKEN}}" -F package=@$f https://nuget.pkg.github.com/BUTR/
done