Skip to content

Commit

Permalink
feat: add GitHub Pages deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tks-00 committed Dec 18, 2024
1 parent b9e4bdb commit 3219d77
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy GitHub Pages

on:
push:
branches: [ main ]

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./

0 comments on commit 3219d77

Please sign in to comment.