Skip to content

Quarto Publish

Quarto Publish #20

Workflow file for this run

on:
workflow_dispatch:
name: Quarto Publish
jobs:
build-deploy:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: true
- name: Set up Python
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
auto-update-conda: true
python-version: "3.10"
channels: conda-forge
allow-softlinks: true
channel-priority: flexible
show-channel-urls: true
- name: Install dependencies
run: |
conda install --yes numpy scipy scikit-learn evomsa jupyter IngeoML pandas seaborn pip nltk compstats umap-learn
which pip
pip install jax optax
- name: Render and Publish
run: |
git config --global user.email "mgraffg@ieee.org"
git config --global user.name "mgraffg"
quarto publish gh-pages . --no-browser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}