Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/generate-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,24 @@ jobs:

- name: Generate dashboard
run: |
mkdir -p _site
python3 examples/generate_readme.py \
--output _site/index.md \
--output index.md \
--base-url https://github.com/amd/Triton-XDNA/tree/main/examples/ \
--verify

- name: Add Jekyll config
run: |
cat > _site/_config.yml << 'EOF'
cat > _config.yml << 'EOF'
title: Triton-XDNA Examples
theme: jekyll-theme-cayman
EOF

- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
Loading