This repository was archived by the owner on May 21, 2026. It is now read-only.
Simplify Docker build command in CI workflow #45
This file contains hidden or 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: | |
| - master | |
| permissions: | |
| contents: write # Vital para o bot conseguir dar o push na nova branch | |
| jobs: | |
| publish-javadoc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🚀 Deploy JavaDoc | |
| uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| java-version: '21' | |
| project: gradle | |
| javadoc-branch: gh-pages |