diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..f94e3d5 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,29 @@ +# .github/workflows/deploy.yml +name: Deploy GitHub Pages + +on: + push: + branches: + - main # Triggers the action on push to the main branch + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Node.js (if you are using a static site generator like Jekyll or Hugo) + uses: actions/setup-node@v2 + with: + node-version: '14' + + - name: Build site (if needed) + run: npm install && npm run build + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./ # Change this if your static site generator outputs files to a different folder