File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed
Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,13 @@ action "CI Test Runner" {
77 uses = " ./.github/test_runner"
88 secrets = [" GITHUB_TOKEN" ]
99}
10+
11+ workflow "build" {
12+ on = " push"
13+ resolves = [" Jekyll Pages Builder" ]
14+ }
15+
16+ action "Jekyll Pages Builder" {
17+ uses = " ./.github/pages_builder"
18+ secrets = [" GITHUB_TOKEN" ]
19+ }
Original file line number Diff line number Diff line change 1+ FROM jekyll/jekyll
2+
3+ LABEL "com.github.actions.name" ="Jekyll Pages Builder"
4+ LABEL "com.github.actions.description" ="Build the full jekyll pages site"
5+ LABEL "com.github.actions.icon" ="gear"
6+ LABEL "com.github.actions.color" ="purple"
7+
8+ ENV LC_ALL C.UTF-8
9+ ENV LANG en_US.UTF-8
10+ ENV LANGUAGE en_US.UTF-8
11+
12+ COPY entrypoint.sh /
13+
14+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ #! /bin/sh -l
2+
3+ script/bootstrap
4+ cd test && npm install && cd ..
5+ JEKYLL_GITHUB_TOKEN=$GITHUB_TOKEN script/build
You can’t perform that action at this time.
0 commit comments