Merge pull request #113 from outfoxx/fix/cli-shadow-publish #58
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: Publish Snapshot | |
on: | |
push: | |
branches: [ main ] | |
permissions: | |
contents: write | |
concurrency: | |
group: publish-snapshot-${{github.ref_name}} | |
cancel-in-progress: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: temurin | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build Artifacts & Documentation | |
run: ./gradlew build dokkaHtmlMultiModule -x test | |
- name: Publish Maven Artifacts (Snapshot) | |
run: >- | |
./gradlew | |
-PsonatypeUsername=${{ secrets.OSSRH_TOKEN_USER }} -PsonatypePassword=${{ secrets.OSSRH_TOKEN_PASS }} | |
:generator:publishToSonatype | |
:cli:publishToSonatype | |
-x test | |
- name: Publish Docker | |
run: >- | |
./gradlew | |
--continue | |
-Djib.to.auth.username=${{ secrets.DOCKER_PUBLISH_USER }} | |
-Djib.to.auth.password=${{ secrets.DOCKER_PUBLISH_TOKEN }} | |
build | |
jib | |
-x test | |
- name: Publish Documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
clean: false | |
folder: build/dokka |