feat: dokka setting test add fix tag naming #7
Workflow file for this run
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: 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: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: github-pages | |
folder: compose/build/dokka/html | |
target-folder: docs/0.x/ |