Skip to content

Commit 020ee2e

Browse files
ci: remove unsigned github-release fallback from java-llama.cpp
A GitHub Release is now only created via the signed path: publish-release (GPG sign + Maven Central) -> github-release-signed. The unsigned fallback job is removed for a clean, single-path pipeline.
1 parent 06350ac commit 020ee2e

1 file changed

Lines changed: 0 additions & 17 deletions

File tree

.github/workflows/publish.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -739,23 +739,6 @@ jobs:
739739
MAVEN_USERNAME: ${{ secrets.CENTRAL_USERNAME }}
740740
MAVEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN }}
741741

742-
github-release:
743-
name: Attach Binaries to GitHub Release (Unsigned)
744-
needs: [check-tag]
745-
if: needs.check-tag.result == 'success' && github.event.inputs.release_to_maven_central != 'true'
746-
runs-on: ubuntu-latest
747-
permissions:
748-
contents: write
749-
steps:
750-
- uses: actions/download-artifact@v8
751-
with:
752-
name: llama-jars
753-
path: release-assets/
754-
- name: Upload release assets
755-
uses: softprops/action-gh-release@v3
756-
with:
757-
files: release-assets/*
758-
759742
publish-release:
760743
name: Publish Release to Central
761744
if: needs.check-tag.result == 'success' && github.event.inputs.release_to_maven_central == 'true'

0 commit comments

Comments
 (0)