Skip to content

Commit

Permalink
ci: Remove CF and Modrinth deploy since kuma-api isn't published there
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Oct 30, 2024
1 parent 1e0ccd6 commit f54c67b
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f54c67b

Please sign in to comment.