Skip to content

Fix ro-crate link for consortia and use download for get #97

Fix ro-crate link for consortia and use download for get

Fix ro-crate link for consortia and use download for get #97

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
pull_request:
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.x
- name: Upgrade pip
run: |
# install pip=>20.1 to use "pip cache dir"
python3 -m pip install --upgrade pip
- name: Get pip cache dir
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- run: pip install mkdocs
- run: pip install mkdocs-material
- run: mkdocs build
- run: mkdocs gh-deploy --force