Publish all libs, Arrow-stack and Docs #593
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 all libs, Arrow-stack and Docs" | |
on: | |
workflow_dispatch: | |
branches: [main] | |
inputs: | |
version: | |
description: 'Version' | |
required: true | |
type: string | |
env: | |
BASEDIR: ${{github.workspace}}/arrow-libs | |
GRADLE_OPTS: -Dorg.gradle.daemon=false -Dorg.gradle.kotlin.dsl.internal.io.timeout=120000 -Dorg.gradle.jvmargs="-Xmx5g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8" | |
OSS_USER: '${{ secrets.OSS_USER }}' | |
OSS_TOKEN: '${{ secrets.OSS_TOKEN }}' | |
OSS_STAGING_PROFILE_ID: '${{ secrets.OSS_STAGING_PROFILE_ID }}' | |
SIGNING_KEY_NAME: '${{ secrets.SIGNING_KEY_NAME }}' | |
SIGNING_KEY_ID: '${{ secrets.SIGNING_KEY_ID }}' | |
SIGNING_KEY_PASSPHRASE: '${{ secrets.SIGNING_KEY_PASSPHRASE }}' | |
SIGNING_KEY: '${{ secrets.SIGNING_KEY }}' | |
jobs: | |
publish: | |
timeout-minutes: 90 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: assemble | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: assemble -Pversion=${{ inputs.version }} -Pkotlin.mpp.enableCompatibilityMetadataVariant=true | |
- name: Upload reports | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: 'reports-${{ matrix.os }}' | |
path: '**/build/reports/**' | |
- name: Publish final version | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: -Pkotlin.mpp.enableCompatibilityMetadataVariant=true -Pversion=${{ inputs.version }} publishToSonatype closeSonatypeStagingRepository |