Merge pull request #123 from outfoxx/fix/sunday-ann-targets #69
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: Git Short SHA | |
run: | | |
calculatedSha=$(git rev-parse --short ${{ github.sha }}) | |
echo "GIT_COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV | |
- name: Build Artifacts & Documentation | |
run: ./gradlew build dokkaHtmlMultiModule -x test | |
env: | |
GIT_COMMIT_SHA: ${{ env.GIT_COMMIT_SHORT_SHA }} | |
- 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 |