Skip to content

Commit

Permalink
Deploy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRy4n authored Aug 30, 2024
1 parent 0480a22 commit 7f3b0db
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/housekeeping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,20 @@ jobs:
github_token: ${{ secrets.GH_TOKEN }}
branch: ${{ github.ref }}

- name: Deploy GitHub Pages site
uses: actions/[email protected]
with:
token: ${{ secrets.GH_TOKEN }}
deploy-pages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 7f3b0db

Please sign in to comment.