Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e8c7a0a95 | ||
|
|
24657da185 | ||
|
|
0491312bd8 | ||
|
|
07cc42d8a0 | ||
|
|
1f005b94af | ||
|
|
c6b6e3f6a6 | ||
|
|
45e128e769 |
@@ -15,7 +15,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Run ShellCheck
|
- name: Run ShellCheck
|
||||||
uses: ludeeus/action-shellcheck@94e0aab03ca135d11a35e5bfc14e6746dc56e7e9
|
uses: ludeeus/action-shellcheck@master
|
||||||
with:
|
with:
|
||||||
version: v0.8.0
|
version: v0.8.0
|
||||||
format: tty
|
format: tty
|
||||||
|
|||||||
+19
-194
@@ -1,14 +1,14 @@
|
|||||||
name: 'Test'
|
name: "Test"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'README.md'
|
- "README.md"
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'README.md'
|
- "README.md"
|
||||||
env:
|
env:
|
||||||
# Use docker.io for Docker Hub if empty
|
# Use docker.io for Docker Hub if empty
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
@@ -34,11 +34,20 @@ jobs:
|
|||||||
text: ${{ steps.grep-image-content.outputs.image }}
|
text: ${{ steps.grep-image-content.outputs.image }}
|
||||||
regex: "jekyll-build-pages:(.*)'"
|
regex: "jekyll-build-pages:(.*)'"
|
||||||
|
|
||||||
test-simple:
|
test-builds:
|
||||||
needs: resolve-image-tag
|
needs: resolve-image-tag
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
strategy:
|
||||||
TEST_NAME: simple
|
matrix:
|
||||||
|
test:
|
||||||
|
- simple
|
||||||
|
- readme
|
||||||
|
- octicons
|
||||||
|
- mojombo
|
||||||
|
- themes
|
||||||
|
- jekyll-include-cache
|
||||||
|
- future-false
|
||||||
|
- future-true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@@ -48,198 +57,14 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
- name: Test ${{ matrix.test }} Project
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
source: ./test_projects/${{ matrix.test }}
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
destination: ./test_projects/${{ matrix.test }}/_site
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
build_revision: JEKYLL_BUILD_REVISION
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Verify output
|
- name: Verify output
|
||||||
run: |
|
run: |
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
./bin/compare_expected_output ./test_projects/${{matrix.test}}
|
||||||
|
|
||||||
test-readme:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: readme
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|
||||||
test-octicons:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: octicons
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|
||||||
test-mojombo:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: mojombo
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|
||||||
test-themes:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: themes
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|
||||||
test-jekyll-include-cache:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: jekyll-include-cache
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|
||||||
test-future-false:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: future-false
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|
||||||
test-future-true:
|
|
||||||
needs: resolve-image-tag
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
TEST_NAME: future-true
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Build local docker image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: Dockerfile
|
|
||||||
tags: ${{ needs.resolve-image-tag.outputs.tag }}
|
|
||||||
|
|
||||||
- name: Test ${{ env.TEST_NAME }} Project
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
source: ./test_projects/${{ env.TEST_NAME }}
|
|
||||||
destination: ./test_projects/${{ env.TEST_NAME }}/_site
|
|
||||||
build_revision: JEKYLL_BUILD_REVISION
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Verify output
|
|
||||||
run: |
|
|
||||||
./bin/compare_expected_output ./test_projects/${{env.TEST_NAME}}
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ source "https://rubygems.org"
|
|||||||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
|
||||||
|
|
||||||
# Manage our dependency on the version of the github-pages gem here.
|
# 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.
|
# Explicitly include this gem here.
|
||||||
# It is not directly included in the github-pages gem list of dependencies,
|
# It is not directly included in the github-pages gem list of dependencies,
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>The Future is Looking Bright! | jekyll-build-pages</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="The Future is Looking Bright!" />
|
<meta property="og:title" content="The Future is Looking Bright!" />
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<meta name="twitter:card" content="summary" />
|
<meta name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="The Future is Looking Bright!" />
|
<meta property="twitter:title" content="The Future is Looking Bright!" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>The Future is Looking Bright! | jekyll-build-pages</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="The Future is Looking Bright!" />
|
<meta property="og:title" content="The Future is Looking Bright!" />
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<meta name="twitter:card" content="summary" />
|
<meta name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="The Future is Looking Bright!" />
|
<meta property="twitter:title" content="The Future is Looking Bright!" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>We Live In Hell | jekyll-build-pages</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="We Live In Hell" />
|
<meta property="og:title" content="We Live In Hell" />
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<meta name="twitter:card" content="summary" />
|
<meta name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="We Live In Hell" />
|
<meta property="twitter:title" content="We Live In Hell" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>jekyll-build-pages</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="jekyll-build-pages" />
|
<meta property="og:title" content="jekyll-build-pages" />
|
||||||
@@ -13,10 +13,11 @@
|
|||||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
<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:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||||
<meta property="og:site_name" content="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 name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="jekyll-build-pages" />
|
<meta property="twitter:title" content="jekyll-build-pages" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>Readme Test | jekyll-build-pages</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="Readme Test" />
|
<meta property="og:title" content="Readme Test" />
|
||||||
@@ -13,10 +13,11 @@
|
|||||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
<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:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||||
<meta property="og:site_name" content="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 name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="Readme Test" />
|
<meta property="twitter:title" content="Readme Test" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>Readme Test | jekyll-build-pages</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="Readme Test" />
|
<meta property="og:title" content="Readme Test" />
|
||||||
@@ -13,10 +13,11 @@
|
|||||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
<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:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||||
<meta property="og:site_name" content="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 name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="Readme Test" />
|
<meta property="twitter:title" content="Readme Test" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>Jekyll Actions Demo</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="Jekyll Actions Demo" />
|
<meta property="og:title" content="Jekyll Actions Demo" />
|
||||||
@@ -13,10 +13,11 @@
|
|||||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
<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:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||||
<meta property="og:site_name" content="Jekyll Actions Demo" />
|
<meta property="og:site_name" content="Jekyll Actions Demo" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
<meta name="twitter:card" content="summary" />
|
<meta name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="Jekyll Actions Demo" />
|
<meta property="twitter:title" content="Jekyll Actions Demo" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<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 http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
<title>themes</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.0" />
|
<meta name="generator" content="Jekyll v3.9.0" />
|
||||||
<meta property="og:title" content="themes" />
|
<meta property="og:title" content="themes" />
|
||||||
@@ -13,10 +13,11 @@
|
|||||||
<link rel="canonical" href="https://github.com/pages/actions/jekyll-build-pages/" />
|
<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:url" content="https://github.com/pages/actions/jekyll-build-pages/" />
|
||||||
<meta property="og:site_name" content="themes" />
|
<meta property="og:site_name" content="themes" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
<meta name="twitter:card" content="summary" />
|
<meta name="twitter:card" content="summary" />
|
||||||
<meta property="twitter:title" content="themes" />
|
<meta property="twitter:title" content="themes" />
|
||||||
<script type="application/ld+json">
|
<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 -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
<link rel="stylesheet" href="/pages/actions/jekyll-build-pages/assets/css/style.css?v=JEKYLL_BUILD_REVISION">
|
||||||
|
|||||||
Reference in New Issue
Block a user