From 21cd06f1f1a76110a32c401fc39f392419cd0378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Daniel?= Date: Sun, 10 Jul 2022 17:58:56 -0300 Subject: [PATCH] remove windows releases for now --- .github/workflows/release.yaml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 686d0ef..d0fd5c9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,22 +23,9 @@ jobs: name: gcommit-${{ matrix.os }}.kexe path: build/bin/native/releaseExecutable/g-commit.kexe - build-win: - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - - uses: fwilhe2/setup-kotlin@main - with: - install-native: true - - run: ./gradlew.bat build - - uses: actions/upload-artifact@v3 - with: - name: gcommit-windows-latest.kexe - path: build/bin/native/releaseExecutable/g-commit.kexe - release: runs-on: ubuntu-latest - needs: [build-non-win, build-win] + needs: [build-non-win] steps: - uses: actions/download-artifact@v3 name: download ubuntu @@ -48,16 +35,11 @@ jobs: name: download macos with: name: gcommit-macos-latest.kexe - - uses: actions/download-artifact@v3 - name: download windows - with: - name: gcommit-windows-latest.kexe - uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.RELEASE_TOKEN }} title: GCommit files: | - gcommit-windows-latest.kexe gcommit-macos-latest.kexe gcommit-ubuntu-latest.kexe