forked from github/opensource.guide
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upd Co-authored-by: Justin Kenyon <[email protected]> Co-authored-by: Dependabot <[email protected]> Co-authored-by: Liu <[email protected]> Co-authored-by: Sidak Singh Aulakh <[email protected]> Co-authored-by: Mike McQuaid <[email protected]> Co-authored-by: null <[email protected]> Co-authored-by: Tal Safran <[email protected]> Co-authored-by: leolleo <[email protected]> Co-authored-by: Gabriel Rafael Gomes <[email protected]> Co-authored-by: Samuel Jiang <[email protected]> Co-authored-by: William Aboucaya <[email protected]> Co-authored-by: Samuel Jiang <[email protected]> Co-authored-by: Wang Qin <[email protected]> Co-authored-by: null <dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Ryan <[email protected]>
- Loading branch information
Showing
564 changed files
with
27,374 additions
and
4,645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
workflow "Test and build on push" { | ||
resolves = ["Jekyll Pages Builder"] | ||
on = "pull_request" | ||
} | ||
|
||
action "CI Test Runner" { | ||
uses = "./.github/test_runner" | ||
secrets = ["GITHUB_TOKEN"] | ||
} | ||
|
||
action "Jekyll Pages Builder" { | ||
needs = "CI Test Runner" | ||
uses = "./.github/pages_builder" | ||
secrets = ["GITHUB_TOKEN"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM jekyll/jekyll | ||
|
||
LABEL "com.github.actions.name"="Jekyll Pages Builder" | ||
LABEL "com.github.actions.description"="Build the full jekyll pages site" | ||
LABEL "com.github.actions.icon"="gear" | ||
LABEL "com.github.actions.color"="purple" | ||
|
||
ENV LC_ALL C.UTF-8 | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US.UTF-8 | ||
|
||
COPY entrypoint.sh / | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -l | ||
|
||
script/bootstrap | ||
cd test && npm install && cd .. | ||
JEKYLL_GITHUB_TOKEN=$GITHUB_TOKEN script/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM jekyll/jekyll | ||
|
||
LABEL "com.github.actions.name"="CI Test Runner" | ||
LABEL "com.github.actions.description"="Run the full test suite" | ||
LABEL "com.github.actions.icon"="gear" | ||
LABEL "com.github.actions.color"="purple" | ||
|
||
ENV LC_ALL C.UTF-8 | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US.UTF-8 | ||
|
||
COPY entrypoint.sh / | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -l | ||
|
||
script/bootstrap | ||
cd test && npm install && cd .. | ||
JEKYLL_GITHUB_TOKEN=$GITHUB_TOKEN script/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.