Skip to content

chore(deps): update actions/setup-java action to v4.6.0 (#234) #198

chore(deps): update actions/setup-java action to v4.6.0 (#234)

chore(deps): update actions/setup-java action to v4.6.0 (#234) #198

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Checkout current branch
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v4.6.0
with:
distribution: temurin
java-version: 17
check-latest: true
- name: Deploy to GitHub Pages
run: ./sbt docs/docusaurusPublishGhpages
env:
GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }}