Skip to content

Endoscopy Benchmarking into CI/CD (#171) #121

Endoscopy Benchmarking into CI/CD (#171)

Endoscopy Benchmarking into CI/CD (#171) #121

name: Generate github pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: 'github.io'
- name: Clone holohub Repository
run: git clone https://github.com/nvidia-holoscan/holohub
- name: Run gather.py
run: python gather_metadata.py
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Move aggregate_metadata.json
run: mv aggregate_metadata.json dist/
- name: Stage dist folder
run: git add dist -f
- name: Commit Changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "Update dist folder"
- name: Deploy to gh-pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist