From 56eb4a9ed4e60e83c1f01ed5c2b6e982ed2421bf Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sat, 9 Jul 2022 13:53:07 -0400 Subject: [PATCH] chore: add build manifest --- .build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 .build.yml diff --git a/.build.yml b/.build.yml new file mode 100755 index 0000000..caa7a24 --- /dev/null +++ b/.build.yml @@ -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