File tree Expand file tree Collapse file tree 2 files changed +40
-8
lines changed
Expand file tree Collapse file tree 2 files changed +40
-8
lines changed Original file line number Diff line number Diff line change 1+ name : Build and Deploy Jekyll
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ workflow_dispatch :
8+
9+ permissions :
10+ contents : read
11+ pages : write
12+ id-token : write
13+
14+ concurrency :
15+ group : pages
16+ cancel-in-progress : false
17+
18+ jobs :
19+ build :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - name : Build with Jekyll
23+ uses : noraworld/jekyll-build-pages@main
24+ with :
25+ use_ruby_version : false
26+ use_gemfile : false
27+
28+ deploy :
29+ needs : build
30+ runs-on : ubuntu-latest
31+ environment :
32+ name : github-pages
33+ url : ${{ steps.deployment.outputs.page_url }}
34+ steps :
35+ - name : Deploy to GitHub Pages
36+ id : deployment
37+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 3939 - name : Test MarkDown Files
4040 shell : pwsh
4141 run : ./Tests/Test-MarkDown.ps1
42- - name : Build with Jekyll
43- uses : noraworld/jekyll-build-pages@main
44- with :
45- use_ruby_version : false
46- use_gemfile : true
4742# - name: Build Pages
4843# shell: pwsh
4944# run: ./build.ps1
5247# with:
5348# # Upload entire repository
5449# path: ./Web/_site/
55- - name : Deploy to GitHub Pages
56- id : deployment
57- uses : actions/deploy-pages@v4
50+ # - name: Deploy to GitHub Pages
51+ # id: deployment
52+ # uses: actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments