forked from Mirror/ollama4j
		
	 8df36a9b98
			
		
	
	8df36a9b98
	
	
	
		
			
			All workflows now use JDK 21 with the Oracle distribution instead of JDK 17 or 11 with Temurin. This ensures consistency and leverages the latest Java features and security updates.
		
			
				
	
	
		
			95 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
 | |
| # For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
 | |
| 
 | |
| name: Release Artifacts to Maven Central
 | |
| 
 | |
| on:
 | |
|   release:
 | |
|     types: [ created ]
 | |
| 
 | |
| 
 | |
| #on:
 | |
| #  pull_request:
 | |
| #    types: [ opened, reopened ]
 | |
| #    branches: [ "main" ]
 | |
| 
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
| 
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     permissions:
 | |
|       contents: write
 | |
|       packages: write
 | |
| 
 | |
|     steps:
 | |
|       - uses: actions/checkout@v5
 | |
| 
 | |
|       - name: Set up JDK 21
 | |
|         uses: actions/setup-java@v5
 | |
|         with:
 | |
|           java-version: '21'
 | |
|           distribution: 'oracle'
 | |
|           server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
 | |
|           settings-path: ${{ github.workspace }} # location for the settings.xml file
 | |
| 
 | |
|       - name: maven-settings-xml-action
 | |
|         uses: whelk-io/maven-settings-xml-action@v22
 | |
|         with:
 | |
|           servers: '[{ "id": "${repo.id}", "username": "${repo.user}", "password": "${repo.pass}" }]'
 | |
| 
 | |
|       - name: Import GPG key
 | |
|         uses: crazy-max/ghaction-import-gpg@v6
 | |
|         with:
 | |
|           gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
 | |
|           passphrase: ${{ secrets.GPG_PASSPHRASE }}
 | |
|       - name: List keys
 | |
|         run: gpg -K
 | |
| 
 | |
|       - name: Find and Replace
 | |
|         uses: jacobtomlinson/gha-find-replace@v3
 | |
|         with:
 | |
|           find: "ollama4j-revision"
 | |
|           replace: ${{ github.ref_name }}
 | |
|           regex: false
 | |
| 
 | |
|       - name: Find and Replace
 | |
|         uses: jacobtomlinson/gha-find-replace@v3
 | |
|         with:
 | |
|           find: "mvn-repo-id"
 | |
|           replace: central
 | |
|           regex: false
 | |
| 
 | |
|       - name: Publish to Maven Central
 | |
|         run: mvn deploy -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} -Drepo.id=central -Drepo.user=${{ secrets.MVN_USER }} -Drepo.pass=${{ secrets.MVN_PASS }}
 | |
| 
 | |
|       - name: Upload Release Asset - JAR
 | |
|         uses: actions/upload-release-asset@v1
 | |
|         env:
 | |
|           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | |
|         with:
 | |
|           upload_url: ${{ github.event.release.upload_url }}
 | |
|           asset_path: target/ollama4j-${{ github.ref_name }}.jar
 | |
|           asset_name: ollama4j-${{ github.ref_name }}.jar
 | |
|           asset_content_type: application/x-jar
 | |
| 
 | |
|       - name: Upload Release Asset - Javadoc JAR
 | |
|         uses: actions/upload-release-asset@v1
 | |
|         env:
 | |
|           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | |
|         with:
 | |
|           upload_url: ${{ github.event.release.upload_url }}
 | |
|           asset_path: target/ollama4j-${{ github.ref_name }}-javadoc.jar
 | |
|           asset_name: ollama4j-${{ github.ref_name }}-javadoc.jar
 | |
|           asset_content_type: application/x-jar
 | |
| 
 | |
|       - name: Upload Release Asset - Sources JAR
 | |
|         uses: actions/upload-release-asset@v1
 | |
|         env:
 | |
|           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | |
|         with:
 | |
|           upload_url: ${{ github.event.release.upload_url }}
 | |
|           asset_path: target/ollama4j-${{ github.ref_name }}-sources.jar
 | |
|           asset_name: ollama4j-${{ github.ref_name }}-sources.jar
 | |
|           asset_content_type: application/x-jar |