From 3219d77bd31f99a154f2c450d067a0c5c5c4d58d Mon Sep 17 00:00:00 2001 From: takasugikensuke Date: Thu, 19 Dec 2024 00:34:58 +0900 Subject: [PATCH] feat: add GitHub Pages deployment workflow --- .github/workflows/pages.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..875b265 --- /dev/null +++ b/.github/workflows/pages.yml @@ -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: ./ \ No newline at end of file