RadioButton 구현 (#10) #13
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: | |
branches: | |
- main | |
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: gh-pages | |
folder: compose/build/dokka/html | |
target-folder: docs/0.x/ |