Drop support for Java 8, make Java 11 the minimum (#878) #430
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: Website | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ["*"] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - run: sbt docs/docusaurusPublishGhpages | |
| env: | |
| GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }} |