-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: dokka setting test * feat: dokka setting test fix syntax error * feat: dokka setting test add uses * feat: dokka setting test add permissions, deploy * feat: dokka setting test fix syntax error * feat: dokka setting test add set up JDK 17 * feat: dokka setting test add fix tag naming * feat: dokka setting test del already deployed packages * feat: dokka setting final * feat: dokka setting final * feat: dokka setting final * feat: dokka setting final
- Loading branch information
1 parent
a3ac906
commit d846500
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
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/ |
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
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