Compare commits
19
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3f06e30868 | ||
|
|
c2d3f388e1 | ||
|
|
70b10b66e2 | ||
|
|
44a6e6beab | ||
|
|
4e7ba26848 | ||
|
|
e68e997ed1 | ||
|
|
b55ba67195 | ||
|
|
7fdbc0da65 | ||
|
|
b8c0fc1311 | ||
|
|
f5c50bde66 | ||
|
|
c77dce5d9f | ||
|
|
dcc8e40474 | ||
|
|
f483590ef3 | ||
|
|
b426eefb2c | ||
|
|
2b9a1ccfeb | ||
|
|
fc7872e282 | ||
|
|
ea14799cdb | ||
|
|
b178f9334b | ||
|
|
b1ba4f9941 |
@@ -53,7 +53,7 @@ jobs:
|
|||||||
# Build and push Docker image with Buildx (don't push on PR)
|
# Build and push Docker image with Buildx (don't push on PR)
|
||||||
# https://github.com/docker/build-push-action
|
# https://github.com/docker/build-push-action
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
|
|||||||
@@ -12,6 +12,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: release-drafter/release-drafter@v6
|
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Build local docker image
|
- name: Build local docker image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Build local docker image
|
- name: Build local docker image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
|
|||||||
+1
-2
@@ -1,4 +1,4 @@
|
|||||||
ARG RUBY_VERSION=2.7.4
|
ARG RUBY_VERSION=3.3
|
||||||
FROM ruby:$RUBY_VERSION-slim
|
FROM ruby:$RUBY_VERSION-slim
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
@@ -22,4 +22,3 @@ ENV LC_ALL en_US.UTF-8
|
|||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|
||||||
|
|||||||
@@ -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", "= 230"
|
gem "github-pages", "= 232"
|
||||||
|
|
||||||
# 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,
|
||||||
|
|||||||
@@ -24,20 +24,20 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Setup Pages
|
- name: Setup Pages
|
||||||
uses: actions/configure-pages@v3
|
uses: actions/configure-pages@v5
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: actions/jekyll-build-pages@v1
|
uses: actions/jekyll-build-pages@v1
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v1
|
uses: actions/upload-pages-artifact@v3
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
id: deployment
|
id: deployment
|
||||||
uses: actions/deploy-pages@v2
|
uses: actions/deploy-pages@v4
|
||||||
environment:
|
environment:
|
||||||
name: github-pages
|
name: github-pages
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
@@ -52,7 +52,7 @@ steps:
|
|||||||
with:
|
with:
|
||||||
destination: "./output"
|
destination: "./output"
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v1
|
uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: "./output"
|
path: "./output"
|
||||||
```
|
```
|
||||||
|
|||||||
+1
-1
@@ -28,4 +28,4 @@ inputs:
|
|||||||
default: ${{ github.token }}
|
default: ${{ github.token }}
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'docker://ghcr.io/actions/jekyll-build-pages:v1.0.11'
|
image: 'docker://ghcr.io/actions/jekyll-build-pages:v1.0.13'
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- 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.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="The Future is Looking Bright!" />
|
<meta property="og:title" content="The Future is Looking Bright!" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="Everything’s coming up Milhouse." />
|
<meta name="description" content="Everything’s coming up Milhouse." />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- 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.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="The Future is Looking Bright!" />
|
<meta property="og:title" content="The Future is Looking Bright!" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="Everything’s coming up Milhouse." />
|
<meta name="description" content="Everything’s coming up Milhouse." />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- 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.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="We Live In Hell" />
|
<meta property="og:title" content="We Live In Hell" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="And it’s not even the cool hell that [redacted] are afraid of. 😭" />
|
<meta name="description" content="And it’s not even the cool hell that [redacted] are afraid of. 😭" />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||||
<title>jekyll-build-pages | A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages.</title>
|
<title>jekyll-build-pages | A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages.</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="jekyll-build-pages" />
|
<meta property="og:title" content="jekyll-build-pages" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
||||||
|
|||||||
@@ -881,8 +881,8 @@ format. You can find the full spec at <a href="http://tomdoc.org"&g
|
|||||||
<span class="c1">#</span>
|
<span class="c1">#</span>
|
||||||
<span class="c1"># Examples</span>
|
<span class="c1"># Examples</span>
|
||||||
<span class="c1">#</span>
|
<span class="c1">#</span>
|
||||||
<span class="c1"># multiplex('Tom', 4)</span>
|
<span class="c1"># multiplex('Tom', 4)</span>
|
||||||
<span class="c1"># # =&gt; 'TomTomTomTom'</span>
|
<span class="c1"># # =&gt; 'TomTomTomTom'</span>
|
||||||
<span class="c1">#</span>
|
<span class="c1">#</span>
|
||||||
<span class="c1"># Returns the duplicated String.</span>
|
<span class="c1"># Returns the duplicated String.</span>
|
||||||
<span class="k">def</span> <span class="nf">multiplex</span><span class="p">(</span><span class="n">text</span><span class="p">,</span> <span class="n">count</span><span class="p">)</span>
|
<span class="k">def</span> <span class="nf">multiplex</span><span class="p">(</span><span class="n">text</span><span class="p">,</span> <span class="n">count</span><span class="p">)</span>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- 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.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="Readme Test" />
|
<meta property="og:title" content="Readme Test" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- 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.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="Readme Test" />
|
<meta property="og:title" content="Readme Test" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||||
<title>Jekyll Actions Demo | A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages.</title>
|
<title>Jekyll Actions Demo | A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages.</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="Jekyll Actions Demo" />
|
<meta property="og:title" content="Jekyll Actions Demo" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||||
<title>themes | A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages.</title>
|
<title>themes | A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages.</title>
|
||||||
<meta name="generator" content="Jekyll v3.9.5" />
|
<meta name="generator" content="Jekyll v3.10.0" />
|
||||||
<meta property="og:title" content="themes" />
|
<meta property="og:title" content="themes" />
|
||||||
<meta property="og:locale" content="en_US" />
|
<meta property="og:locale" content="en_US" />
|
||||||
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
<meta name="description" content="A simple GitHub Action for producing Jekyll build artifacts compatible with GitHub Pages." />
|
||||||
|
|||||||
Reference in New Issue
Block a user