From f54c67b7c39855017c9a46466b114238fcc99e8b Mon Sep 17 00:00:00 2001 From: BlayTheNinth <1933180+BlayTheNinth@users.noreply.github.com> Date: Wed, 30 Oct 2024 12:38:32 +0100 Subject: [PATCH] ci: Remove CF and Modrinth deploy since kuma-api isn't published there --- .github/workflows/publish-release.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index ddb124c..6c3b202 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -80,11 +80,7 @@ jobs: const includeNeoForge = includes.includes('neoforge') && ${{inputs.neoforge}}; return { loader: ['common', includeFabric ? 'fabric' : false, includeForge ? 'forge' : false, includeNeoForge ? 'neoforge' : false].filter(Boolean), - site: ['curseforge', 'modrinth', 'publish'], - exclude: [ - {loader: 'common', site: 'curseforge'}, - {loader: 'common', site: 'modrinth'} - ] + site: ['publish'] } build-common: runs-on: ubuntu-latest @@ -171,15 +167,8 @@ jobs: cache: 'gradle' - name: Make gradle wrapper executable run: chmod +x ./gradlew - - name: Check current artifact hash TODO - run: sha1sum ${{ matrix.loader }}/build/libs/* - name: Publish run: ./gradlew :${{ matrix.loader }}:${{ matrix.site }} '-Pversion=${{needs.create-release.outputs.version}}' '-PtwelveIterationsNexusUsername=${{ secrets.NEXUS_USER }}' '-PtwelveIterationsNexusPassword=${{ secrets.NEXUS_PASSWORD }}' - env: - CURSEFORGE_TOKEN: ${{secrets.CURSEFORGE_TOKEN}} - MODRINTH_TOKEN: ${{secrets.MODRINTH_TOKEN}} - - name: Check new artifact hash TODO - run: sha1sum ${{ matrix.loader }}/build/libs/* needs: - create-release - build-common