ignore sbt-paradox updates #22
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: Microsite | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.3.2 | |
with: | |
fetch-depth: 0 # fetch all branches & tags | |
- name: "Install Nix ❄️" | |
uses: cachix/install-nix-action@v22 | |
- name: "Install SSH 🔑 for GH pages" | |
uses: shimataro/ssh-key-action@v2.3.1 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
- run: git config --global user.email "neutron-site-bot@profunktor.dev" | |
- run: git config --global user.name "neutron-site-bot" | |
- name: "Build microsite 🚧" | |
run: nix develop -c sbt ghpagesPushSite |