Skip to content

fixing composable compile #59

fixing composable compile

fixing composable compile #59

Workflow file for this run

name: Build & Publish CI/CD
on:
push:
tags:
- '*'
jobs:
build_unit_test_publish_job:
name: Build -> Unit-test -> Publish
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Cache gradle
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Decrypt large secret
run: ./.github/scripts/decrypt_secret.sh
env:
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build
run: ./gradlew build
- name: Publish
run: ./gradlew publishAllPublicationsToSonatypeRepository --max-workers 1 closeAndReleaseRepository