0.7.1.1 #5
Workflow file for this run
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: Gradle publish | |
on: | |
workflow_dispatch: | |
release: | |
types: [ created ] | |
jobs: | |
publish: | |
environment: | |
name: publish | |
strategy: | |
matrix: | |
os: [ macOS-latest, windows-latest ] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
java-version: 11 | |
distribution: liberica | |
- name: Cache konan | |
uses: actions/[email protected] | |
with: | |
path: ~/.konan | |
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Publish Windows Artifacts | |
if: matrix.os == 'windows-latest' | |
uses: gradle/[email protected] | |
with: | |
arguments: | | |
publishAllPublicationsToSpaceRepository | |
-Ppublishing.targets=all | |
-Ppublishing.space.user=${{ secrets.SPACE_APP_ID }} | |
-Ppublishing.space.token=${{ secrets.SPACE_APP_SECRET }} | |
- name: Publish Mac Artifacts | |
if: matrix.os == 'macOS-latest' | |
uses: gradle/[email protected] | |
with: | |
arguments: | | |
publishMacosX64PublicationToSpaceRepository | |
publishMacosArm64PublicationToSpaceRepository | |
publishIosX64PublicationToSpaceRepository | |
publishIosArm64PublicationToSpaceRepository | |
publishIosSimulatorArm64PublicationToSpaceRepository | |
-Ppublishing.targets=all | |
-Ppublishing.space.user=${{ secrets.SPACE_APP_ID }} | |
-Ppublishing.space.token=${{ secrets.SPACE_APP_SECRET }} |