Skip to content

feat: dokka setting test add set up JDK 17 #6

feat: dokka setting test add set up JDK 17

feat: dokka setting test add set up JDK 17 #6

Workflow file for this run

# 파일 경로명
name: release
# 언제 실행될 것인지
on:
push
# push:
# branches: [ main ]
# 실행할 job
jobs:
release:
runs-on: ubuntu-latest
steps:
- run: echo "Starting Release"
name: set up JDK 17
- uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
name: checkout
- uses: actions/checkout@v4
name: permissions
- run: chmod +x gradlew
name: Build Documentation
- run: ./gradlew dokkaHtml
name: Deploy Documentation to GitHub Pages
- uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: github-pages
FOLDER: compose/build/dokka/html
TARGET_FOLDER: docs/0.x/