This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
59 lines (50 loc) · 1.61 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
name: .NET
on:
push:
branches: [ master ]
create:
tags:
- '*'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Checkout libs
uses: actions/checkout@v2
with:
repository: ${{ secrets.LibsRepository }}
token: ${{ secrets.LibsRepositoryToken }}
path: Libs
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Publish a release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: ReleaseChangelog.md
files: |
Output/Debug/net472/AdvancedSafety.dll
Output/Debug/net472/CameraMinus.dll
Output/Debug/net472/FavCat-merged.dll
Output/Debug/net472/Finitizer.dll
Output/Debug/net472/FriendsPlusHome.dll
Output/Debug/net472/IKTweaks.dll
Output/Debug/net472/JoinNotifier.dll
Output/Debug/net472/LagFreeScreenshots.dll
Output/Debug/net472/MirrorResolutionUnlimiter.dll
Output/Debug/net472/ParticleAndBoneLimiterSettings.dll
Output/Debug/net472/ScaleGoesBrr.dll
Output/Debug/net472/Styletor.dll
Output/Debug/net472/TrueShaderAntiCrash.dll
Output/Debug/net472/Turbones.dll
Output/Debug/net472/UIExpansionKit.dll
Output/Debug/net472/ViewPointTweaker.dll
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}