Skip to content

Update lock file

Update lock file #101

Workflow file for this run

name: Build and deploy docs
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-24.04-arm
name: Build and push docs
steps:
- name: git-checkout
uses: actions/checkout@v3
- uses: prefix-dev/setup-pixi@v0.8.0
with:
pixi-version: v0.41.0
cache: true
- run: pixi run build-docs
- name: Add .nojekyll
run: |
touch docs/_build/dirhtml/.nojekyll
shell: bash
- name: Add CNAME file
run: |
echo gwf.app > docs/_build/dirhtml/CNAME
shell: bash
- name: Push to docs branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: git@github.com:gwforg/gwforg.github.io.git
BRANCH: main
FOLDER: docs/_build/dirhtml
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_PRIVATE_KEY }}