Skip to content

Commit

Permalink
feat: dokka setting test add permissions, deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
kangyuri1114 committed Sep 10, 2024
1 parent 2fe4aa0 commit 92a0189
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- run: echo "Starting Release"

name: checkout
- uses: actions/checkout@v4
- run: ./gradlew dokkaHtml

- 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/

0 comments on commit 92a0189

Please sign in to comment.