From 7ff48ba26bdd01cee04ccbf237b119bb56d6cf60 Mon Sep 17 00:00:00 2001 From: rjindael Date: Mon, 31 Jul 2023 05:14:49 -0700 Subject: [PATCH] feat(ci): restore dependencies and properly build --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89389dc..1c91e29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,11 +8,18 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: actions/setup-dotnet@v3 with: dotnet-version: 7.0 + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + + - name: Publish run: | dotnet publish -r win-x64 -c Release --no-self-contained -p:PublishDir=../publish/win-x64 mv publish/win-x64/Kiseki.Launcher.Windows.exe publish/Kiseki.Launcher.exe