Publish snapshot to SciJava Maven #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish snapshot to SciJava Maven | |
on: | |
workflow_dispatch: | |
jobs: | |
jars: | |
name: Build jars | |
uses: ./.github/workflows/jars.yml | |
publish: | |
needs: jars | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: blosc-jars | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Publish snapshot | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: publish | |
env: | |
MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} |