-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (61 loc) · 2.23 KB
/
dotnet.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
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master","dev" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Download TMODL
run: |
Invoke-WebRequest -Uri "https://github.com/tModLoader/tModLoader/releases/latest/download/tModLoader.zip" -OutFile "tModLoader.zip"
Expand-Archive -Path "tModLoader.zip" -DestinationPath "tModLoader"
- name: Build
shell: bash
run: |
ModloaderDir=$(pwd)/local/ModLoader
echo ModloaderDir: $ModloaderDir
mkdir -p artifacts/Mods
mkdir -p $ModloaderDir
export ExtraBuildModFlags="-tmlsavedirectory \"$(cygpath -w $ModloaderDir)\""
echo ExtraBuildModFlags: $ExtraBuildModFlags
dotnet build CaiBotMod/CaiBotMod.csproj --nologo
cp -r $ModloaderDir/Mods/. artifacts/Mods/
- name: Upload MOD
uses: actions/upload-artifact@v4
with:
name: CaiBotMod
path: |
./artifacts/Mods/CaiBotMod.tmod
- name: Set Release Tag
id: set_tag
run: echo "::set-output name=tag::v$(date +'%Y.%m.%d')"
- name: Update Tag
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: |
git tag -f ${{ steps.set_tag.outputs.tag }}
git push -f origin ${{ steps.set_tag.outputs.tag }}
- name: Release Mod
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.set_tag.outputs.tag }}
name: CaiBotMod ${{ steps.set_tag.outputs.tag }}
body: |
# CaiBotMod Ciallo~(∠・ω< )⌒☆
### 📅 只推荐使用最新版CaiBot扩展
### 📖 MOD版本的CaiBot扩展功能有所缩减
### 📦 Auto Build By Github Action
artifacts: |
./artifacts/Mods/CaiBotMod.tmod
allowUpdates: true
removeArtifacts: true