dataforge-core/.github/workflows/publish.yml

54 lines
1.6 KiB
YAML
Raw Normal View History

2021-03-07 15:05:36 +03:00
name: Gradle publish
2021-01-31 20:55:01 +03:00
on:
2021-03-07 15:05:36 +03:00
workflow_dispatch:
2021-02-02 12:09:44 +03:00
release:
2021-08-06 12:29:48 +03:00
types: [ created ]
2021-01-31 20:55:01 +03:00
jobs:
2021-03-07 15:05:36 +03:00
publish:
environment:
name: publish
strategy:
matrix:
2021-05-09 12:07:24 +03:00
os: [ macOS-latest, windows-latest ]
2021-03-07 15:05:36 +03:00
runs-on: ${{matrix.os}}
2021-02-02 12:09:44 +03:00
steps:
2021-03-07 15:05:36 +03:00
- name: Checkout the repo
uses: actions/checkout@v2
2021-02-02 12:09:44 +03:00
- name: Set up JDK 11
2021-05-09 12:07:24 +03:00
uses: DeLaGuardo/setup-graalvm@4.0
2021-02-02 12:09:44 +03:00
with:
2021-08-06 12:29:48 +03:00
graalvm: 21.2.0
2021-05-09 12:07:24 +03:00
java: java11
arch: amd64
2021-03-07 15:05:36 +03:00
- name: Cache gradle
uses: actions/cache@v2
2021-02-02 12:09:44 +03:00
with:
2021-08-06 12:29:48 +03:00
path: |
~/.gradle/caches
~/.gradle/wrapper
2021-03-07 15:05:36 +03:00
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 Windows Artifacts
if: matrix.os == 'windows-latest'
2021-08-06 12:29:48 +03:00
shell: cmd
2021-03-07 15:05:36 +03:00
run: >
2021-08-06 12:29:48 +03:00
./gradlew release --no-daemon --build-cache -Ppublishing.enabled=true
-Ppublishing.space.user=${{ secrets.SPACE_APP_ID }}
-Ppublishing.space.token=${{ secrets.SPACE_APP_SECRET }}
2021-03-07 15:05:36 +03:00
- name: Publish Mac Artifacts
if: matrix.os == 'macOS-latest'
run: >
2021-08-06 12:29:48 +03:00
./gradlew release --no-daemon --build-cache -Ppublishing.enabled=true -Ppublishing.platform=macosX64
-Ppublishing.space.user=${{ secrets.SPACE_APP_ID }}
-Ppublishing.space.token=${{ secrets.SPACE_APP_SECRET }}