Add YourKit #61
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: publish-docs | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: '1.11.1.1189' | |
- name: Cache maven | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: m2-${{ hashFiles('deps.edn') }} | |
restore-keys: | | |
m2- | |
- name: Release | |
run: | | |
make build | |
clojure -A:dev -X recife.notebook.index/build! | |
cp -R public/build . | |
mv build docs | |
- name: Upload GitHub Pages artifact | |
uses: actions/[email protected] | |
with: | |
path: docs/ | |
deploy: | |
needs: build | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# Specify runner + deployment step | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |