SBT: use scala3 syntax in sbt files #365
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: Release website | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ["*"] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5.6.0 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| cache: sbt | |
| - uses: sbt/setup-sbt@v1 | |
| - run: git fetch --unshallow | |
| - name: Publish website for ${{ github.ref }} | |
| run: | | |
| sbt docs/docusaurusPublishGhpages | |
| env: | |
| GIT_USER: munit@scalameta.org | |
| GITHUB_DEPLOY_KEY: ${{ secrets.GITHUB_DEPLOY_KEY }} |