-
Notifications
You must be signed in to change notification settings - Fork 3
52 lines (44 loc) · 1.43 KB
/
publish-snapshot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Snapshot
on:
workflow_dispatch:
push:
branches:
- trunk
jobs:
publish-snapshot:
if: ${{ github.repository == 'MiSikora/laboratory' }}
name: Publish Snapshot
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
- name: Checkout Repo
uses: actions/[email protected]
- name: Configure JDK
uses: actions/[email protected]
with:
distribution: zulu
java-version: 21
- name: Cache Gradle Dirs
uses: actions/[email protected]
with:
path: |
~/.gradle/caches/
~/.gradle/wrapper/
key: cache-gradle-${{ hashFiles('**/*.gradle.kts', '**/gradle-wrapper.properties') }}
restore-keys: cache-gradle-
- name: Deploy Snapshot
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
run: ./gradlew publish --stacktrace
- name: Build HTML Docs
run: ./gradlew dokkaHtmlMultiModule --stacktrace
- name: Stop Gradle
run: ./gradlew --stop
- name: Publish Website
uses: mhausenblas/[email protected]
env:
CONFIG_FILE: ./mkdocs.yml
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REQUIREMENTS: ./docs/requirements.txt