diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..57a1c52 --- /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 TheHeartOfTheParty/TheHeartOfTheParty + dotnet build -c Release -p:IsCI=true + - package: | + cd TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows + zip -r release.zip TheHeartOfTheParty +artifacts: + - TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows/TheHeartOfTheParty/latest.zip + - TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows/release.zip diff --git a/TheHeartOfTheParty/TheHeartOfTheParty.csproj b/TheHeartOfTheParty/TheHeartOfTheParty.csproj index 2c1ba84..528f53e 100755 --- a/TheHeartOfTheParty/TheHeartOfTheParty.csproj +++ b/TheHeartOfTheParty/TheHeartOfTheParty.csproj @@ -6,6 +6,8 @@ enable true preview + false + true @@ -43,4 +45,8 @@ + + + + diff --git a/TheHeartOfTheParty/TheHeartOfTheParty.yaml b/TheHeartOfTheParty/TheHeartOfTheParty.yaml new file mode 100644 index 0000000..dfef863 --- /dev/null +++ b/TheHeartOfTheParty/TheHeartOfTheParty.yaml @@ -0,0 +1,8 @@ +name: The Heart of the Party +author: ascclemens +punchline: Set your character's title - now with Searchalin! +description: |- + The Heart of the Party is a remake of the in-game title picker, but it + supports searching. Note that it doesn't add a command to set your title; use + the built-in /title command instead. +repo_url: https://git.annaclemens.io/ascclemens/TheHeartOfTheParty