Skip to content

Commit e87e0d9

Browse files
authored
Update jekyll-gh-pages.yml
1 parent 8592f06 commit e87e0d9

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/jekyll-gh-pages.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
# 🚀 Deploy Jekyll with GitHub Pages
2+
13
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2-
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
4+
name: "Deploy Jekyll with GitHub Pages"
35

46
on:
57
# Runs on pushes targeting the default branch
@@ -24,28 +26,33 @@ concurrency:
2426
jobs:
2527
# Build job
2628
build:
29+
name: 📦 Build Jekyll Site
2730
runs-on: ubuntu-latest
2831
steps:
29-
- name: Checkout
32+
- name: ⬇️ Checkout Repository
3033
uses: actions/checkout@v4
31-
- name: Setup Pages
34+
35+
- name: ⚙️ Configure GitHub Pages
3236
uses: actions/configure-pages@v5
33-
- name: Build with Jekyll
37+
38+
- name: 🔨 Build Jekyll Site
3439
uses: actions/jekyll-build-pages@v1
3540
with:
3641
source: ./
3742
destination: ./_site
38-
- name: Upload artifact
43+
44+
- name: 📤 Upload Artifact
3945
uses: actions/upload-pages-artifact@v3
4046

4147
# Deployment job
4248
deploy:
49+
name: 🚀 Deploy to GitHub Pages
4350
environment:
4451
name: github-pages
4552
url: ${{ steps.deployment.outputs.page_url }}
4653
runs-on: ubuntu-latest
4754
needs: build
4855
steps:
49-
- name: Deploy to GitHub Pages
56+
- name: 🚚 Deploy
5057
id: deployment
5158
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)