TheHeartOfTheParty/.build.yml

24 lines
702 B
YAML
Raw Permalink Normal View History

2022-04-17 05:57:11 +00:00
image: fedora/latest
packages:
- dotnet
2022-04-17 06:01:41 +00:00
- dotnet-sdk-5.0
2022-04-17 05:57:11 +00:00
- 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: |
2022-04-17 06:05:01 +00:00
cd TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5-windows
2022-04-17 05:57:11 +00:00
zip -r release.zip TheHeartOfTheParty
artifacts:
2022-04-17 06:05:01 +00:00
- TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5-windows/TheHeartOfTheParty/latest.zip
- TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5-windows/release.zip