Merge pull request #2029 from MCJack123/patch-19 #1161
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 documentation | |
on: | |
push: | |
branches: | |
- mc-* | |
jobs: | |
make_doc: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Clone repository | |
uses: actions/checkout@v4 | |
- name: 📥 Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: 📥 Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: ${{ !startsWith(github.ref, 'refs/heads/mc-') }} | |
- name: ⚒️ Generate documentation | |
run: ./gradlew docWebsite --no-daemon | |
- name: 📤 Upload Jar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Documentation | |
path: ./projects/web/build/site/ |