Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
rm test workflow
  • Loading branch information
skarim committed Apr 8, 2026
commit 08dc2da9339dc0017465ba34497040f840bbf4df
9 changes: 2 additions & 7 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@ name: Docs

on:
workflow_dispatch:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
push:
branches:
- main
- skarim/docs # temporary for testing
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
Comment thread
skarim marked this conversation as resolved.
Expand Down Expand Up @@ -46,13 +41,13 @@ jobs:
run: npm run build

- name: Upload build artifacts
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/skarim/docs' || github.event_name == 'workflow_dispatch'
if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/dist

deploy:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/skarim/docs' || github.event_name == 'workflow_dispatch'
if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
Loading