Publish #120
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 | |
on: | |
workflow_run: | |
workflows: ["ReleaseStart"] | |
workflow_dispatch: | |
types: | |
- completed | |
jobs: | |
publish: | |
name: Release build and publish | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Check out code | |
uses: actions/[email protected] | |
with: | |
ref: release | |
persist-credentials: false | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
distribution: adopt | |
java-version: 17 | |
- name: Release build | |
# assembleRelease for all modules, excluding non-library modules: samples, docs | |
run: ./gradlew assembleRelease -x :stream-chat-android-ui-components-sample:assembleRelease -x :stream-chat-android-compose-sample:assembleRelease -x :stream-chat-android-docs:assembleRelease | |
- name: Source jar and dokka | |
run: ./gradlew androidSourcesJar javadocJar | |
- name: Publish to MavenCentral | |
run: ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository | |
env: | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | |
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | |
- name: Create GITHUB_TAG_RELEASE_VERSION | |
run: | | |
./gradlew version-print | |
version="$(cat build/tmp/temp-version)" | |
echo GITHUB_TAG_RELEASE_VERSION=v$version >> $GITHUB_ENV | |
- name: Generate release file | |
run: ./gradlew generate-release | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "release.tar.gz,foo/*.txt" | |
bodyFile: "build/tmp/CHANGELOG_PARSED.md" | |
token: ${{ secrets.STREAM_PUBLIC_BOT_TOKEN }} | |
tag: ${{ env.GITHUB_TAG_RELEASE_VERSION }} | |
commit: release | |
makeLatest: true |