Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 47bf32b

Browse files
committed
jekyll ci
1 parent 997eb61 commit 47bf32b

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

.github/workflows/jekyll.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,27 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v6
12+
- uses: docker/setup-compose-action@v2
13+
- name: Setup Pages
14+
uses: actions/configure-pages@v5
1215
- name: Build the site in the jekyll/builder container
1316
run: |
1417
export BINARIES_DIRECTORY="${{ github.workspace }}/_site"
1518
export SOURCES_DIRECTORY="${{ github.workspace }}"
1619
mkdir -p "$BINARIES_DIRECTORY"
1720
docker-compose -f docker-compose-ci.yml up --abort-on-container-exit --exit-code-from ci
21+
- name: Upload GitHub Pages artifact
22+
uses: actions/upload-pages-artifact@v4
23+
24+
deploy:
25+
environment:
26+
name: github-pages
27+
url: ${{steps.deployment.outputs.page_url}}
28+
runs-on: ubuntu-latest
29+
needs: build
30+
steps:
31+
- name: Deploy to GitHub Pages
32+
id: deployment
33+
uses: actions/deploy-pages@v4
34+

0 commit comments

Comments
 (0)