ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1name: Deploy Decision Graph to Pages
2
3on:
4 push:
5 branches: [main]
6 paths:
7 - 'docs/**'
8 workflow_dispatch:
9
10permissions:
11 contents: write
12
13jobs:
14 deploy:
15 runs-on: ubuntu-latest
16 steps:
17 - uses: actions/checkout@v4
18
19 - name: Deploy to gh-pages branch
20 uses: peaceiris/actions-gh-pages@v4
21 with:
22 github_token: ${{ secrets.GITHUB_TOKEN }}
23 publish_dir: ./docs
24 publish_branch: gh-pages
25 force_orphan: true