Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ead53d0c8a | |||
| e2b13747b8 | |||
| d0c3f534f8 | |||
| 68107d3ea8 | |||
| e2cc96e2ea | |||
| 7ee131980c | |||
| 0b9e0d5ae1 | |||
| b749a008bc | |||
| e08a1986ae | |||
| 8e8c7a0a95 | |||
| 24657da185 | |||
| 0491312bd8 | |||
| 07cc42d8a0 | |||
| 1f005b94af |
@@ -15,7 +15,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@94e0aab03ca135d11a35e5bfc14e6746dc56e7e9
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
version: v0.8.0
|
||||
format: tty
|
||||
|
||||
@@ -20,6 +20,7 @@ ENV LANGUAGE en_US.UTF-8
|
||||
ENV LC_ALL en_US.UTF-8
|
||||
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
COPY bin/emit_telemetry /emit_telemetry
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
|
||||
@@ -5,10 +5,11 @@ source "https://rubygems.org"
|
||||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
||||
|
||||
# Manage our dependency on the version of the github-pages gem here.
|
||||
gem "github-pages", "= 223"
|
||||
gem "github-pages", "= 225"
|
||||
|
||||
# Explicitly include this gem here.
|
||||
# It is not directly included in the github-pages gem list of dependencies,
|
||||
# even though it is included in the original GitHub Pages build infrastructure.
|
||||
gem "jekyll-include-cache", "= 0.2.1"
|
||||
gem "jekyll-octicons", "~> 14.2"
|
||||
gem "faraday", "~> 1.10"
|
||||
|
||||
+1
-1
@@ -27,4 +27,4 @@ inputs:
|
||||
default: ${{ github.token }}
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'docker://ghcr.io/actions/jekyll-build-pages:v1.0.1'
|
||||
image: 'docker://ghcr.io/actions/jekyll-build-pages:feature-emit-telemetry'
|
||||
|
||||
Executable
+43
@@ -0,0 +1,43 @@
|
||||
#! /usr/bin/env ruby
|
||||
|
||||
require "faraday"
|
||||
require "faraday/retry"
|
||||
require "json"
|
||||
|
||||
ACTION_NWO = ENV["GITHUB_ACTION_REPOSITORY"]
|
||||
REPOSITORY_NWO = ENV["GITHUB_REPOSITORY"]
|
||||
GITHUB_RUN_ID = ENV["GITHUB_RUN_ID"]
|
||||
GITHUB_TOKEN = ENV["INPUT_TOKEN"]
|
||||
TELEMETRY_URL = "https://api.github.com/repos/#{REPOSITORY_NWO}/pages/telemetry"
|
||||
RETRY_COUNT = 3
|
||||
|
||||
RETRY_OPTIONS = {
|
||||
max: RETRY_COUNT,
|
||||
methods: [:post],
|
||||
retry_statuses: [500, 502, 503, 504],
|
||||
interval: 1,
|
||||
backoff_factor: 2,
|
||||
}
|
||||
|
||||
begin
|
||||
connection = Faraday.new { |f| f.request :retry, RETRY_OPTIONS }
|
||||
response = connection.post(
|
||||
TELEMETRY_URL,
|
||||
{ github_run_id: GITHUB_RUN_ID }.to_json,
|
||||
{
|
||||
Accept: 'application/vnd.github.v3+json',
|
||||
Authorization: "Bearer #{GITHUB_TOKEN}",
|
||||
'Content-type': 'application/json',
|
||||
'User-Agent': "#{ACTION_NWO} Faraday #{Faraday::VERSION}",
|
||||
},
|
||||
)
|
||||
|
||||
if response.success?
|
||||
STDERR.puts "Sending telemetry for run id #{GITHUB_RUN_ID}"
|
||||
else response.success?
|
||||
STDERR.puts "Failed to emit pages build telemetry to #{TELEMETRY_URL} : returned status code: #{response.status} after #{RETRY_COUNT + 1} attempts"
|
||||
STDERR.puts response.body if response.body
|
||||
end
|
||||
rescue e
|
||||
STDERR.puts "Failed to emit pages build telemetry: #{e}"
|
||||
end
|
||||
@@ -5,9 +5,9 @@ if [ "local" = "$1" ]; then
|
||||
export PAGES_REPO_NWO=actions/jekyll-build-pages
|
||||
export JEKYLL_BUILD_REVISION=JEKYLL_BUILD_REVISION
|
||||
|
||||
for dir in $(ls test_projects)
|
||||
for dir in test_projects/*
|
||||
do
|
||||
bundle exec github-pages build --verbose -s test_projects/$dir -d test_projects/$dir/_expected
|
||||
bundle exec github-pages build --verbose -s "$dir" -d "$dir/_expected"
|
||||
done
|
||||
else
|
||||
act -b -s GITHUB_TOKEN -j record-expected-output
|
||||
|
||||
@@ -35,3 +35,5 @@ fi
|
||||
|
||||
cd "$PAGES_GEM_HOME"
|
||||
$GITHUB_PAGES build "$VERBOSE" "$FUTURE" --source "$SOURCE_DIRECTORY" --destination "$DESTINATION_DIRECTORY"
|
||||
|
||||
/emit_telemetry
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>The Future is Looking Bright! | jekyll-build-pages</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="The Future is Looking Bright!" />
|
||||
@@ -20,7 +20,7 @@
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="The Future is Looking Bright!" />
|
||||
<script type="application/ld+json">
|
||||
{"mainEntityOfPage":{"@type":"WebPage","@id":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html"},"description":"Everything’s coming up Milhouse.","url":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html","@type":"BlogPosting","headline":"The Future is Looking Bright!","dateModified":"2020-02-13T00:00:00-05:00","datePublished":"2020-02-13T00:00:00-05:00","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2020-02-13T00:00:00-05:00","datePublished":"2020-02-13T00:00:00-05:00","description":"Everything’s coming up Milhouse.","headline":"The Future is Looking Bright!","mainEntityOfPage":{"@type":"WebPage","@id":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html"},"url":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>The Future is Looking Bright! | jekyll-build-pages</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="The Future is Looking Bright!" />
|
||||
@@ -20,7 +20,7 @@
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="The Future is Looking Bright!" />
|
||||
<script type="application/ld+json">
|
||||
{"mainEntityOfPage":{"@type":"WebPage","@id":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html"},"description":"Everything’s coming up Milhouse.","url":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html","@type":"BlogPosting","headline":"The Future is Looking Bright!","dateModified":"2020-02-13T00:00:00-05:00","datePublished":"2020-02-13T00:00:00-05:00","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2020-02-13T00:00:00-05:00","datePublished":"2020-02-13T00:00:00-05:00","description":"Everything’s coming up Milhouse.","headline":"The Future is Looking Bright!","mainEntityOfPage":{"@type":"WebPage","@id":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html"},"url":"https://github.com/pages/actions/jekyll-build-pages/2020/02/13/the-future-is-looking-bright.html"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>We Live In Hell | jekyll-build-pages</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="We Live In Hell" />
|
||||
@@ -20,7 +20,7 @@
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="We Live In Hell" />
|
||||
<script type="application/ld+json">
|
||||
{"mainEntityOfPage":{"@type":"WebPage","@id":"https://github.com/pages/actions/jekyll-build-pages/2022/03/01/we-live-in-hell.html"},"description":"And it’s not even the cool hell that [redacted] are afraid of. 😭","url":"https://github.com/pages/actions/jekyll-build-pages/2022/03/01/we-live-in-hell.html","@type":"BlogPosting","headline":"We Live In Hell","dateModified":"2022-03-01T00:00:00-05:00","datePublished":"2022-03-01T00:00:00-05:00","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2022-03-01T00:00:00-05:00","datePublished":"2022-03-01T00:00:00-05:00","description":"And it’s not even the cool hell that [redacted] are afraid of. 😭","headline":"We Live In Hell","mainEntityOfPage":{"@type":"WebPage","@id":"https://github.com/pages/actions/jekyll-build-pages/2022/03/01/we-live-in-hell.html"},"url":"https://github.com/pages/actions/jekyll-build-pages/2022/03/01/we-live-in-hell.html"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>jekyll-build-pages</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="jekyll-build-pages" />
|
||||
@@ -13,10 +13,11 @@
|
||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:site_name" content="jekyll-build-pages" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="jekyll-build-pages" />
|
||||
<script type="application/ld+json">
|
||||
{"headline":"jekyll-build-pages","url":"https://github.com/pages/actions/jekyll-build-pages/","@type":"WebSite","name":"jekyll-build-pages","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"WebSite","headline":"jekyll-build-pages","name":"jekyll-build-pages","url":"https://github.com/pages/actions/jekyll-build-pages/"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -101,18 +101,20 @@ GEM
|
||||
rb-fsevent (>= 0.9.3)
|
||||
rb-inotify (>= 0.9.7)
|
||||
mercenary (0.3.6)
|
||||
mini_portile2 (2.1.0)
|
||||
mini_portile2 (2.8.0)
|
||||
minima (2.0.0)
|
||||
minitest (5.9.1)
|
||||
multipart-post (2.0.0)
|
||||
net-dns (0.8.0)
|
||||
nokogiri (1.6.8.1)
|
||||
mini_portile2 (~> 2.1.0)
|
||||
nokogiri (1.13.3)
|
||||
mini_portile2 (~> 2.8.0)
|
||||
racc (~> 1.4)
|
||||
octokit (4.6.0)
|
||||
sawyer (~> 0.8.0, >= 0.5.3)
|
||||
pathutil (0.14.0)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (1.5.3)
|
||||
racc (1.6.0)
|
||||
rb-fsevent (0.9.8)
|
||||
rb-inotify (0.9.7)
|
||||
ffi (>= 0.5.0)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>Readme Test | jekyll-build-pages</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="Readme Test" />
|
||||
@@ -13,10 +13,11 @@
|
||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:site_name" content="jekyll-build-pages" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="Readme Test" />
|
||||
<script type="application/ld+json">
|
||||
{"url":"https://github.com/pages/actions/jekyll-build-pages/","@type":"WebSite","headline":"Readme Test","name":"jekyll-build-pages","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"WebSite","headline":"Readme Test","name":"jekyll-build-pages","url":"https://github.com/pages/actions/jekyll-build-pages/"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>Readme Test | jekyll-build-pages</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="Readme Test" />
|
||||
@@ -13,10 +13,11 @@
|
||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:site_name" content="jekyll-build-pages" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="Readme Test" />
|
||||
<script type="application/ld+json">
|
||||
{"url":"https://github.com/pages/actions/jekyll-build-pages/","@type":"WebSite","headline":"Readme Test","name":"jekyll-build-pages","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"WebSite","headline":"Readme Test","name":"jekyll-build-pages","url":"https://github.com/pages/actions/jekyll-build-pages/"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>Jekyll Actions Demo</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="Jekyll Actions Demo" />
|
||||
@@ -13,10 +13,11 @@
|
||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:site_name" content="Jekyll Actions Demo" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="Jekyll Actions Demo" />
|
||||
<script type="application/ld+json">
|
||||
{"url":"https://github.com/pages/actions/jekyll-build-pages/","@type":"WebSite","headline":"Jekyll Actions Demo","name":"Jekyll Actions Demo","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"WebSite","headline":"Jekyll Actions Demo","name":"Jekyll Actions Demo","url":"https://github.com/pages/actions/jekyll-build-pages/"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Begin Jekyll SEO tag v2.7.1 -->
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>themes</title>
|
||||
<meta name="generator" content="Jekyll v3.9.0" />
|
||||
<meta property="og:title" content="themes" />
|
||||
@@ -13,10 +13,11 @@
|
||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||
<meta property="og:site_name" content="themes" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="themes" />
|
||||
<script type="application/ld+json">
|
||||
{"url":"https://github.com/pages/actions/jekyll-build-pages/","@type":"WebSite","headline":"themes","name":"themes","@context":"https://schema.org"}</script>
|
||||
{"@context":"https://schema.org","@type":"WebSite","headline":"themes","name":"themes","url":"https://github.com/pages/actions/jekyll-build-pages/"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||
|
||||
Reference in New Issue
Block a user