From 049fac5d73bae50b3395097a0fe1fc5c493ceaae Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Fri, 18 Feb 2022 02:44:02 -0500 Subject: [PATCH] chore(ci): 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..485c808 --- /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 ChatTwo/ChatTwo + dotnet build -c Release -p:IsCI=true + - package: | + cd ChatTwo/ChatTwo/bin/Release/net5.0-windows + zip -r release.zip ChatTwo +artifacts: + - ChatTwo/ChatTwo/bin/Release/net5.0-windows/ChatTwo/latest.zip + - ChatTwo/ChatTwo/bin/Release/net5.0-windows/release.zip