Skip to content

feat: add onyxia (#86) #120

feat: add onyxia (#86)

feat: add onyxia (#86) #120

Workflow file for this run

name: Deploy Manifests
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy Manifests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/Iron'
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Yank PNPM Store Directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup Cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Generate Manifests
shell: bash
run: |
cd ci && pnpm install --frozen-lockfile && pnpm run build && cd -
- name: Deploy Manifests
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: source.canister.me
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'