-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
111 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
name: Publish (K2) | ||
|
||
on: | ||
push: | ||
branches: | ||
- "k2" | ||
|
||
permissions: | ||
contents: write | ||
id-token: write | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Java | ||
uses: actions/setup-java@v4 | ||
|
||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
|
||
- name: Set up Kotlin | ||
uses: fwilhe2/setup-kotlin@main | ||
|
||
- name: Get version | ||
id: project-version | ||
|
||
run: | | ||
VERSION=$(kotlin .github/get-version.main.kts) | ||
echo "Project version: $VERSION" | ||
echo "version=$VERSION" >> $GITHUB_OUTPUT | ||
- name: Set up Gradle properties | ||
|
||
run: | | ||
mkdir -p ~/.gradle | ||
echo "githubToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.gradle/gradle.properties | ||
echo -e "\norg.gradle.jvmargs=-XX:MaxMetaspaceSize=5G" >> ~/.gradle/gradle.properties | ||
- name: Gradle (Build) | ||
uses: gradle/gradle-build-action@v3 | ||
|
||
with: | ||
arguments: checkLicenses build dokkaHtmlMultiModule | ||
dependency-graph: generate-and-submit | ||
|
||
env: | ||
TOKEN: ${{ secrets.TOKEN }} | ||
|
||
- name: Zip Dokka docs | ||
working-directory: build/dokka/ | ||
|
||
run: zip -qq -r dokka.zip htmlMultiModule | ||
|
||
- name: Disable parallel publish | ||
if: contains(steps.project-version.outputs.version, '-SNAPSHOT') | ||
|
||
run: kotlin .github/disable-parallel.main.kts | ||
|
||
- name: Gradle (Publish) | ||
uses: gradle/gradle-build-action@v3 | ||
|
||
if: contains(steps.project-version.outputs.version, '-SNAPSHOT') | ||
|
||
env: | ||
ORG_GRADLE_PROJECT_signingKey: "${{ secrets.GPG_KEY }}" | ||
ORG_GRADLE_PROJECT_signingPassword: "${{ secrets.GPG_PASSWORD }}" | ||
|
||
OSSRH_USERNAME: "${{ secrets.OSSRH_USERNAME }}" | ||
OSSRH_PASSWORD: "${{ secrets.OSSRH_PASSWORD }}" | ||
|
||
TOKEN: "${{ secrets.TOKEN }}" | ||
|
||
with: | ||
arguments: publish --no-parallel | ||
|
||
- name: Upload artifact (Extra Module JARs) | ||
uses: actions/upload-artifact@v4 | ||
|
||
with: | ||
name: JARs (Extra Modules) | ||
path: extra-modules/*/build/libs/*.jar | ||
|
||
- name: Upload artifact (Main JARs) | ||
uses: actions/upload-artifact@v4 | ||
|
||
with: | ||
name: JARs (Main) | ||
path: kord-extensions/build/libs/*.jar | ||
|
||
- name: Upload artifact (Module JARs) | ||
uses: actions/upload-artifact@v4 | ||
|
||
with: | ||
name: JARs (Modules) | ||
path: modules/*/build/libs/*.jar | ||
|
||
- name: Upload artifact (Dokka) | ||
uses: actions/upload-artifact@v4 | ||
|
||
with: | ||
name: Dokka HTML | ||
path: build/dokka/dokka.zip |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
org.gradle.parallel=true | ||
kotlin.incremental=true | ||
ksp.incremental=false | ||
projectVersion=1.8.0-SNAPSHOT | ||
projectVersion=1.8.0-k2-SNAPSHOT | ||
#dokka will run out of memory with the default meta space | ||
org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m |
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