2021-02-28 13:14:41 +03:00
|
|
|
# Based on https://github.com/touchlab/Stately/blob/main/.github/workflows/deploy.yml
|
|
|
|
|
2021-02-28 13:06:47 +03:00
|
|
|
name: deploy
|
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [macOS-latest, windows-latest]
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
steps:
|
|
|
|
- name: Checkout the repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up JDK 11
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 11
|
|
|
|
- name: Add msys to path
|
|
|
|
if: matrix.os == 'windows-latest'
|
|
|
|
run: SETX PATH "%PATH%;C:\msys64\mingw64\bin"
|
|
|
|
- name: Cache gradle
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.gradle/caches
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Cache konan
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.konan
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Publish Mac Artifacts
|
|
|
|
if: matrix.os == 'macOS-latest'
|
2021-02-28 17:29:21 +03:00
|
|
|
run: ./gradlew publishAllPublicationsToSpaceRepository publishAllPublicationsToSonatypeRepository --no-daemon --stacktrace -PsonatypePublish=true -PsonatypeUser=${{ secrets.SONATYPE_USERNAME }} -PsonatypePassword=${{ secrets.SONATYPE_PASSWORD }} -PspaceUser=${{ secrets.SPACE_USERNAME }} -PspacePassword=${{ secrets.SPACE_PASSWORD }}
|
2021-02-28 13:06:47 +03:00
|
|
|
env:
|
|
|
|
signingKey: ${{ secrets.SIGNING_KEY }}
|
|
|
|
- name: Publish Windows Artifacts
|
|
|
|
if: matrix.os == 'windows-latest'
|
2021-02-28 17:29:21 +03:00
|
|
|
run: ./gradlew publishAllPublicationsToSpaceRepository publishAllPublicationsToSonatypeRepository --no-daemon --stacktrace -PsonatypePublish=true -PsonatypeUser=${{ secrets.SONATYPE_USERNAME }} -PsonatypePassword=${{ secrets.SONATYPE_PASSWORD }} -PspaceUser=${{ secrets.SPACE_USERNAME }} -PspacePassword=${{ secrets.SPACE_PASSWORD }}
|
2021-02-28 13:06:47 +03:00
|
|
|
env:
|
|
|
|
signingKey: ${{ secrets.SIGNING_KEY }}
|