Add release notes for Scala CLI v1.12.5 (#4190) #147
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 deploy | |
| on: | |
| push: | |
| branches: | |
| - stable | |
| jobs: | |
| update-website: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - run: .github/scripts/update-website.sh | |
| env: | |
| GIT_USER: Virtuslab | |
| DEPLOYMENT_BRANCH: gh-pages | |
| GIT_PASS: ${{ secrets.GITHUB_TOKEN }} | |
| # after the release the PR should be empty | |
| - name: Open PR with changes back to main | |
| uses: repo-sync/pull-request@v2 | |
| with: | |
| destination_branch: "main" | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| pr_title: "Back port of documentation changes to main" | |
| name: Update stable branch | |
| branch: backport/stable |