Release v0.4.0 #21
Workflow file for this run
This file contains 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 | |
on: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: "adopt@1.11" | |
- uses: olafurpg/setup-gpg@v3 | |
- name: Setup GIT user | |
uses: fregante/setup-git-user@v1 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6.6 | |
bundler-cache: true | |
- name: Install Jekyll | |
run: | | |
gem install sass | |
gem install activesupport -v 6.1.4.4 | |
gem install jekyll -v 4.0.0 | |
gem install jemoji -v 0.11.1 | |
gem install jekyll-sitemap -v 1.4.0 | |
- run: sbt docs/publishMicrosite | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} |