Skip to content

Commit c1143c8

Browse files
author
Luis Orta
committed
MOre experimeintation
1 parent b5e5748 commit c1143c8

File tree

2 files changed

+40
-8
lines changed

2 files changed

+40
-8
lines changed

.github/workflows/jekyll.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

.github/workflows/static.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ jobs:
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
@@ -52,6 +47,6 @@ jobs:
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

0 commit comments

Comments
 (0)