Skip to content

Commit 4badcd4

Browse files
authored
Merge pull request #27 from gpotter2/ci
CI
2 parents 879a2c0 + ea2d7ff commit 4badcd4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: secdev.github.io ci
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build Jekyll
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Build the site in the jekyll/builder container
10+
run: |
11+
docker run \
12+
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
13+
-e PAGES_REPO_NWO=${{ github.repository }} \
14+
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"

0 commit comments

Comments
 (0)