Release #16
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: Release | |
on: workflow_dispatch | |
jobs: | |
release: | |
name: Release library | |
runs-on: macos-12 | |
continue-on-error: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Gradle Cache | |
uses: actions/cache@v3 | |
with: | |
key: gradle-${{ hashFiles('**/gradle.properties') }} | |
restore-keys: gradle- | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
- name: Kotlin Native Cache | |
uses: actions/cache@v3 | |
with: | |
key: kotlin-native-${{ hashFiles('gradle.properties') }} | |
path: ~/.konan | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Release with gradle | |
env: | |
MAVEN_AWS_KEY: ${{ secrets.MIREGO_MAVEN_AWS_ACCESS_KEY_ID }} | |
MAVEN_AWS_SECRET: ${{ secrets.MIREGO_MAVEN_AWS_SECRET_ACCESS_KEY }} | |
run: | | |
./gradlew check publish -s |