Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Welf42 authored Oct 21, 2024
0 parents commit ba546da
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ba546da

Please sign in to comment.