Update Freeletics Gradle Plugin to v0.13.0 (#703) #1334
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 | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '**' | |
jobs: | |
publish: | |
runs-on: macos-latest | |
if: github.repository == 'freeletics/flowredux' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 22 | |
- name: Install Android SDK | |
run: ./.github/android-sdk.sh | |
- name: Set version for main | |
if: ${{ github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/') }} | |
run: | | |
echo "ORG_GRADLE_PROJECT_VERSION_NAME=$(git describe --tags --abbrev=0 | awk -F. '/[0-9]+\./{$NF++;print}' OFS=.)-SNAPSHOT" >> $GITHUB_ENV | |
- name: Set version for branch | |
if: ${{ github.ref_name != 'main' && !startsWith(github.ref, 'refs/tags/') }} | |
run: | | |
echo "ORG_GRADLE_PROJECT_VERSION_NAME=${{ github.ref_name }}-SNAPSHOT" | sed 's#/#-#g' >> $GITHUB_ENV | |
- uses: gradle/actions/setup-gradle@v3 | |
- name: Publish | |
run: ./gradlew publish | |
env: | |
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MAVEN_SIGNING_PRIVATE_KEY }} | |
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.MAVEN_SIGNING_PASSWORD }} | |
if: "${{ env.ORG_GRADLE_PROJECT_mavenCentralUsername != '' }}" |