Skip to content

fix(gear-sync): surface the backend's actual error in the sync tray (v0.4.1) #70

fix(gear-sync): surface the backend's actual error in the sync tray (v0.4.1)

fix(gear-sync): surface the backend's actual error in the sync tray (v0.4.1) #70

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build Plugin
runs-on: ubuntu-latest
env:
DALAMUD_HOME: /tmp/dalamud
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.0.x
10.0.x
- name: Download Dalamud
run: |
mkdir -p $DALAMUD_HOME
curl -sSL https://goatcorp.github.io/dalamud-distrib/latest.zip -o /tmp/dalamud.zip
unzip -o /tmp/dalamud.zip -d $DALAMUD_HOME
- name: Restore dependencies
run: dotnet restore
- name: Build (Release)
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build
- name: Format check
run: dotnet format --verify-no-changes
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: XIVRaidPlannerPlugin
path: XIVRaidPlannerPlugin/bin/Release/XIVRaidPlannerPlugin/latest.zip
if-no-files-found: warn