Added normal and lightmap buffers #40
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: Deploy Javadoc | |
on: | |
push: | |
branches: | |
- 1.21 | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # if you have a protection rule on your repository, you'll need to give write permission to the workflow. | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Debug - List directory contents | |
run: | | |
pwd | |
ls -R | |
- name: Deploy JavaDoc 🚀 | |
uses: MathieuSoysal/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
javadoc-branch: javadoc | |
java-version: 21 | |
javadoc-source-folder: common/build/docs/javadoc | |
project: gradle | |
- name: Debug - List directory contents | |
run: | | |
pwd | |
ls -R | |
if: always() |