File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change 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
46on :
57 # Runs on pushes targeting the default branch
@@ -24,28 +26,33 @@ concurrency:
2426jobs :
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
You can’t perform that action at this time.
0 commit comments