From c7d2b6860b6735fd3fb15ba5ee59d8c7d535357f Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sun, 21 Nov 2021 13:48:30 -0500 Subject: [PATCH] chore(ci): add build manifest --- .build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 .build.yml diff --git a/.build.yml b/.build.yml new file mode 100755 index 0000000..a0cddbd --- /dev/null +++ b/.build.yml @@ -0,0 +1,24 @@ +image: fedora/latest +packages: + - dotnet + - wget + - unzip + - zip +sources: + - https://git.sr.ht/~jkcclemens/Glamaholic +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 Glamaholic/Glamaholic + dotnet build -c Release -p:IsCI=true + - package: | + cd Glamaholic/Glamaholic/bin/Release/net5.0-windows + zip -r release.zip Glamaholic +artifacts: + - Glamaholic/Glamaholic/bin/Release/net5.0-windows/Glamaholic/latest.zip + - Glamaholic/Glamaholic/bin/Release/net5.0-windows/release.zip