Skip to content

publications: update #41

publications: update

publications: update #41

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: deploy to anjos.github.io/cv
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: prefix-dev/setup-pixi@v0.9.3
with:
cache: true
- name: Quality
shell: bash -l {0}
run: |
pixi run qa
- name: Build
shell: bash -l {0}
run: |
pixi run build
mkdir output
cp cv.pdf output/
cp publications.bib output/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output
publish_branch: gh-pages