Skip to content

Commit

Permalink
revert to old version
Browse files Browse the repository at this point in the history
  • Loading branch information
ddilbazTT committed Jan 20, 2025
1 parent e4338af commit 146e6b6
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Test Docs
name: docs

on:
push:
branches:
- main
branches: ["automate-pages-workflow"]
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -40,7 +39,6 @@ jobs:
mkdir -p docs/.vuepress
cat > docs/.vuepress/config.js << 'EOF'
import { defaultTheme } from 'vuepress'
export default {
title: 'TT-Torch Documentation',
description: 'Documentation for TT-Torch',
Expand All @@ -61,3 +59,14 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vuepress/dist

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 146e6b6

Please sign in to comment.