Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Updated profiles

Updated profiles #110

Workflow file for this run

name: Publish docs
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-$ # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install nix
uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_path: nixpkgs=channel:nixos-24.05
- uses: cachix/cachix-action@v15
with:
name: holochain-ci
- uses: cachix/cachix-action@v15
with:
name: holochain-open-dev
- uses: cachix/cachix-action@v15
with:
name: darksoil-studio
- name: Install and Build 🔧
run: |
nix develop --command bash -c "pnpm i && pnpm -F docs build"
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/.vitepress/dist # The folder the action should deploy.