File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ # Sample workflow for building and deploying a Jekyll site to GitHub Pages
2+ name : Deploy Jekyll with GitHub Pages dependencies preinstalled
3+
4+ on :
5+ # Runs on pushes targeting the default branch
6+ push :
7+ branches : [ main ]
8+ paths :
9+ - ' docs/**'
10+ - ' _config.yml'
11+
12+ # Allows you to run this workflow manually from the Actions tab
13+ workflow_dispatch :
14+
15+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
16+ permissions :
17+ contents : read
18+ pages : write
19+ id-token : write
20+
21+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
22+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
23+ concurrency :
24+ group : " pages"
25+ cancel-in-progress : false
26+
27+ jobs :
28+ # Build job
29+ build :
30+ runs-on : ubuntu-latest
31+ steps :
32+ - name : Checkout
33+ uses : actions/checkout@v4
34+ - name : Setup Pages
35+ uses : actions/configure-pages@v5
36+ - name : Build with Jekyll
37+ uses : actions/jekyll-build-pages@v1
38+ with :
39+ source : ./
40+ destination : ./_site
41+ - name : Upload artifact
42+ uses : actions/upload-pages-artifact@v3
43+
44+ # Deployment job
45+ deploy :
46+ environment :
47+ name : github-pages
48+ url : ${{ steps.deployment.outputs.page_url }}
49+ runs-on : ubuntu-latest
50+ needs : build
51+ steps :
52+ - name : Deploy to GitHub Pages
53+ id : deployment
54+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments