Skip to content

update: reorder sections for better conversion hierarchy and add test… #37

update: reorder sections for better conversion hierarchy and add test…

update: reorder sections for better conversion hierarchy and add test… #37

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
paths:
- 'docs/**'
- '.github/workflows/deploy.yml'
pull_request:
branches: [ main ]
paths:
- 'docs/**'
- '.github/workflows/deploy.yml'
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
if: github.ref == 'refs/heads/main'