From d82488d10237f7eea08d80fd0f7c3cd13f123390 Mon Sep 17 00:00:00 2001 From: DemonKingSwarn Date: Mon, 10 Nov 2025 16:32:34 +0530 Subject: chore: removed windows support --- .github/workflows/windows.yaml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/windows.yaml (limited to '.github/workflows') diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml deleted file mode 100644 index 6ae6271..0000000 --- a/.github/workflows/windows.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build and Save C# Binary on Windows - -on: - push: - branches: - - master - -jobs: - build: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v3 - - - name: Setup .NET SDK - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '8.x' - - - name: Restore dependencies - run: dotnet restore hypr-wellbeing-windows.csproj - - - name: Build project - run: dotnet publish hypr-wellbeing-windows.csproj - - - name: Upload binary artifact - uses: actions/upload-artifact@v4 - with: - name: csharp-binary - path: | - **/bin/Release/net8.0/**/*.exe - **/bin/Release/net8.0/**/*.dll - -- cgit v1.1