From 0f1f6af1b9ac0db88b09e3f45c3a3592ec9e403b Mon Sep 17 00:00:00 2001 From: rjindael Date: Fri, 22 Sep 2023 18:22:00 -0700 Subject: [PATCH] chore(ci): remove ci temporarily --- .github/workflows/build.yml | 33 --------------------------------- .github/workflows/ci.yml | 25 ------------------------- 2 files changed, 58 deletions(-) delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index e7a6ad2..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build -on: [push, pull_request] - -jobs: - windows: - strategy: - matrix: - configuration: [Debug, Release] - - name: Windows - runs-on: windows-latest - - steps: - - uses: actions/checkout@v4 - - - 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 --no-self-contained -c ${{ matrix.configuration }} -r win-x64 - - - name: Upload - uses: actions/upload-artifact@v3 - with: - name: Kiseki.Launcher.Windows (${{ matrix.configuration }}) - path: .\Kiseki.Launcher.Windows\bin\${{ matrix.configuration }}\net7.0-windows\win-x64\publish\* \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 6bcaf0e..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI -on: [push] - -jobs: - release: - name: Release - runs-on: ubuntu-latest - if: startsWith(github.ref, 'refs/tag/v') - - steps: - - name: Download release artifact - uses: actions/download-artifact@v3 - with: - name: Kiseki.Launcher.Windows (Release) - path: win-x64 - - - name: Rename binary - run: mv win-x64/Kiseki.Launcher.Windows.exe Kiseki.Launcher-v${{ github.ref_name }}_win-x64.exe - - - name: Create release draft - uses: softprops/action-gh-release@v1 - with: - name: ${{ github.ref_name }} - files: Kiseki.Launcher-v${{ github.ref_name }}_win-x64.exe - draft: true \ No newline at end of file