Skip to content

Let's try updating sbt-microsite #6

Let's try updating sbt-microsite

Let's try updating sbt-microsite #6

Workflow file for this run

name: Make site
on:
push:
branches: ["main"]
tags: ["*"]
jobs:
makesite:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
- run: gem install jekyll -v 4
- run: sbt docs/publishMicrosite
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}