diff --git a/.github/workflows/publish-github-pages.yaml b/.github/workflows/publish-github-pages.yaml new file mode 100644 index 0000000..2c823cc --- /dev/null +++ b/.github/workflows/publish-github-pages.yaml @@ -0,0 +1,20 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./holding-page-static