Merge pull request #253 from scala-steward/update/sbt-1.12.14 #135
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 Website | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ["*"] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: sbt/setup-sbt@v1 | |
| - uses: coursier/cache-action@v6 | |
| - name: Build website | |
| run: sbt docs/docusaurusCreateSite | |
| - name: Publish website to GitHub Pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| folder: ./website/build/scalac-profiling |