We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 879a2c0 + ea2d7ff commit 4badcd4Copy full SHA for 4badcd4
.github/workflows/ci.yml
@@ -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