-
Notifications
You must be signed in to change notification settings - Fork 4
153 lines (132 loc) · 5.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
name: Publish Module
on:
push:
branches:
- master
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:
build-module:
name: Build Module
runs-on: ubuntu-latest
outputs:
mod_version: ${{ steps.changelog.outputs.mod_version.test }}
mod_description: ${{ steps.changelog.outputs.mod_description.test }}
steps:
- name: Setup
uses: butr/actions-common-setup@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
- name: Build Bannerlord.ButterLib Module
run: |
$path = $PWD.Path + '/bannerlord';
$implFX = $PWD.Path + '/bannerlord-implementationsFX';
$implCore = $PWD.Path + '/bannerlord-implementationsCore';
$finalFX = $path + '/Modules/Bannerlord.ButterLib/bin/Win64_Shipping_Client/';
$finalCore = $path + '/Modules/Bannerlord.ButterLib/bin/Gaming.Desktop.x64_Shipping_Client/';
$proj = 'src/Bannerlord.ButterLib.Implementation/Bannerlord.ButterLib.Implementation.csproj';
$pdllFX = $path + '/Modules/Bannerlord.ButterLib/bin/Win64_Shipping_Client/Bannerlord.ButterLib.Implementation.*.dll';
$ppdbFX = $path + '/Modules/Bannerlord.ButterLib/bin/Win64_Shipping_Client/Bannerlord.ButterLib.Implementation.*.pdb';
$pdllCore = $path + '/Modules/Bannerlord.ButterLib/bin/Gaming.Desktop.x64_Shipping_Client/Bannerlord.ButterLib.Implementation.*.dll';
$ppdbCore = $path + '/Modules/Bannerlord.ButterLib/bin/Gaming.Desktop.x64_Shipping_Client/Bannerlord.ButterLib.Implementation.*.pdb';
# The folders are required to be created before executing the script
New-Item -ItemType directory -Force -Path $path;
New-Item -ItemType directory -Force -Path $implFX;
New-Item -ItemType directory -Force -Path $implCore;
[string[]]$gameversions = Get-Content -Path supported-game-versions.txt;
# Last entry is the Minimal version. We will use Bannerlord.ButterLib.dll from there
For ($i = 0; $i -le $gameversions.Length - 1; $i++)
{
$gameversion = $gameversions[$i];
$version = $gameversion.substring(1);
$constgameversion = $gameversion.replace(".", "");
dotnet clean $proj --configuration Release;
dotnet build $proj --configuration Release -p:OverrideGameVersion=$gameversion -p:GameFolder="$path" -p:GameVersionConstant="$constgameversion";
# Copy Implementations to the Implementations folder
Copy-Item $pdllFX $implFX/;
Copy-Item $ppdbFX $implFX/;
Copy-Item $pdllCore $implCore/;
Copy-Item $ppdbCore $implCore/;
}
# Copy Implementations to the Module
Copy-Item $implFX/* $finalFX;
Copy-Item $implCore/* $finalCore;
# Delete Implementations folder
Remove-Item -Recurse $implFX;
Remove-Item -Recurse $implCore;
shell: pwsh
env:
BANNERLORD_BUTR_UPLOAD_URL: ${{secrets.BANNERLORD_BUTR_UPLOAD_URL}}
- name: Install and Run ChangelogParser
id: changelog
run: |
dotnet tool install -g Bannerlord.ChangelogParser --ignore-failed-sources
vers="$(bannerlord_changelog_parser latestversion -f "$PWD/changelog.txt")"
echo "::set-output name=mod_version::$vers"
desc="$(bannerlord_changelog_parser fulldescription -f "$PWD/changelog.txt")"
desc="${desc//'%'/'%25'}"
desc="${desc//$'\n'/'%0A'}"
desc="${desc//$'\r'/'%0D'}"
echo "::set-output name=mod_description::$desc"
- name: Upload bannerlord folder
uses: actions/upload-artifact@v4
with:
name: bannerlord
path: ./bannerlord/
###########################
# NUGET/GPR #
###########################
publish-on-nuget:
needs: ["build-module"]
uses: BUTR/workflows/.github/workflows/release-nuget.yml@master
with:
project_path: src/Bannerlord.ButterLib/Bannerlord.ButterLib.csproj
secrets:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
###########################
# NEXUSMODS #
###########################
publish-on-nexusmods:
needs: ["build-module"]
uses: BUTR/workflows/.github/workflows/release-nexusmods.yml@master
with:
nexusmods_game_id: mountandblade2bannerlord
nexusmods_mod_id: 2018
mod_filename: ButterLib
mod_version: ${{ needs.build-module.outputs.mod_version }}
mod_description: ${{ needs.build-module.outputs.mod_description }}
artifact_name: bannerlord
secrets:
NEXUSMODS_APIKEY: ${{ secrets.ARAGAS_NEXUSMODS_API_KEY }}
NEXUSMODS_SESSION_COOKIE: ${{ secrets.ARAGAS_NEXUSMODS_SESSION_COOKIE }}
###########################
# STEAM #
###########################
publish-on-steam:
needs: ["build-module"]
uses: BUTR/workflows/.github/workflows/release-steam.yml@master
with:
workshop_id: 2859232415
mod_id: Bannerlord.ButterLib
mod_description: ${{ needs.build-module.outputs.mod_description }}
artifact_name: bannerlord
secrets:
STEAM_LOGIN: ${{ secrets.STEAM_WORKSHOP_LOGIN }}
STEAM_PASSWORD: ${{ secrets.STEAM_WORKSHOP_PASSWORD }}
STEAM_AUTH_CODE: ${{ secrets.STEAM_WORKSHOP_AUTH_CODE }}
###########################
# GITHUB #
###########################
publish-on-github:
needs: ["build-module"]
uses: BUTR/workflows/.github/workflows/release-github.yml@master
with:
mod_id: Bannerlord.ButterLib
mod_version: ${{ needs.build-module.outputs.mod_version }}
mod_description: ${{ needs.build-module.outputs.mod_description }}
artifact_name: bannerlord