Skip to content

chore(deps): update actions/setup-java action to v4.2.2 (#193) #161

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

chore(deps): update actions/setup-java action to v4.2.2 (#193) #161

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout current branch
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v4.2.2
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 }}