Skip to content

disable activation of base #188

disable activation of base

disable activation of base #188

Workflow file for this run

# https://github.com/quarto-dev/quarto-actions/blob/main/examples/quarto-publish-example.yml
on:
push:
branches: main
name: Render and Publish
jobs:
build-deploy:
name: "Build and deploy"
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: false
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
micromamba-version: "latest"
- name: Check and log the environment
run: |
python -c "import geopandas; geopandas.show_versions();"
micromamba info
micromamba list
quarto --version
- name: Register kernel
run: |
python -m ipykernel install --user --name sds
- name: Render Book project
run: |
quarto render
quarto render --profile micro
- name: Move subprojects under a single domain
run: |
mv _site_micro _site/micro
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site