From aef927763cfae9d0fa9c33ebbdde03715ef0bbcc Mon Sep 17 00:00:00 2001 From: a4plane Date: Mon, 2 Jun 2025 13:46:05 +0900 Subject: [PATCH] qwdqwd --- .gitea/workflow/Action.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitea/workflow/Action.yaml diff --git a/.gitea/workflow/Action.yaml b/.gitea/workflow/Action.yaml new file mode 100644 index 0000000..fbac134 --- /dev/null +++ b/.gitea/workflow/Action.yaml @@ -0,0 +1,30 @@ +name: build dll + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Setup NuGet + uses: NuGet/setup-nuget@v1.1.1 + + - name: Restore NuGet packages + run: nuget restore psycastDontNeedPsyfocus.sln + + - name: Build with MSBuild + run: msbuild psycastDontNeedPsyfocus.csproj /p:Configuration=Release + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: mod-dll + path: bin\Release\psycastDontNeedPsyfocus.dll