chore: add build manifest

This commit is contained in:
Anna 2022-07-09 13:53:07 -04:00
parent 625582e970
commit 56eb4a9ed4
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
1 changed files with 22 additions and 0 deletions

22
.build.yml Executable file
View File

@ -0,0 +1,22 @@
image: fedora/latest
packages:
- dotnet
- wget
- unzip
- zip
tasks:
- download-dalamud: |
mkdir dalamud
cd dalamud
wget https://github.com/goatcorp/dalamud-distrib/raw/main/latest.zip
unzip latest.zip
rm latest.zip
- build-plugin: |
cd ExtraChat/client/ExtraChat
dotnet build -c Release -p:IsCI=true
- package: |
cd ExtraChat/client/ExtraChat/bin/Release/net5.0-windows
zip -r release.zip ExtraChat
artifacts:
- ExtraChat/client/ExtraChat/bin/Release/net5.0-windows/ExtraChat/latest.zip
- ExtraChat/client/ExtraChat/bin/Release/net5.0-windows/release.zip