ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4c9bb601ee76e5de9c08328cbe90c2290a2b5b8e 25 lines 487 B view raw
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