Merge pull request #117 from Malinskiy/feature/streaming_install_resp… #83
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: Build and deploy docs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
github-pages: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Generate dokka files | |
run: ./gradlew :adam:dokkaHtml | |
- uses: helaili/[email protected] | |
env: | |
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }} | |
with: | |
jekyll_src: docs | |
target_branch: gh-pages | |
gem_src: docs |