Skip to content

fix(client): move scissor zone of tab content two "pixels" up #126

fix(client): move scissor zone of tab content two "pixels" up

fix(client): move scissor zone of tab content two "pixels" up #126

name: Publish
on:
push:
branches:
- v2.1.x
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: |
8
16
17
21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
cache-read-only: false
- name: Build with Gradle
run: ./gradlew build --stacktrace -Psnapshot=true
- name: Publish to snapshots maven repository
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
run: ./gradlew publish --stacktrace -Psnapshot=true
- name: Publish to GitHub
uses: Apehum/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-generate-changelog: false
github-prerelease: true
- name: Build dokka
run: ./gradlew dokkaHtmlCollector
- name: Upload dokka artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build/dokka/htmlCollector
deploy-dokka:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4