Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates #61

Merged
merged 5 commits into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
path: target

- name: Test Docsy
run: make test-docsy
run: sudo make test-docsy

- name: Test DocuAPI
run: make test-docuapi
run: sudo make test-docuapi

- name: Push egde images
- name: Push edge images
if: "!startsWith(github.ref, 'refs/tags/')"
run: make push-edge
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
path: target

- name: Test Docsy
run: make test-docsy
run: sudo make test-docsy

- name: Test DocuAPI
run: make test-docuapi
run: sudo make test-docuapi

- name: Push images
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version_bump.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Hugo realease version bump
name: Hugo release version bump

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ bump:
@RELEASE=$(version) bump

src/bin/buildx:
@wget -q -O src/bin/buildx https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-amd64
@wget -q -O src/bin/buildx https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64
@chmod a+x src/bin/buildx
@docker buildx create --use

Expand Down
4 changes: 2 additions & 2 deletions doc/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ docker run --rm -it \

The extended edition is used in those images containing `ext` in the name. Except use of extended edition and additional tools are those images exactly the same as those using the normal edition.

Table of Hugo extention features and the version when images first support the feature:
Table of Hugo extension features and the version when images first support the feature:

| Feature | Alpine | Debian | Ubuntu |
| ------------- | ------ | ------ | ------ |
Expand Down Expand Up @@ -204,7 +204,7 @@ Hugo images with Pandoc support are made available for users wanting to use Pand

[Hugo triggers Pandoc](https://gohugo.io/content-management/formats/#additional-formats-through-external-helpers) with `pandoc --mathjax`.
Some users may want to use other arguments, so to accommodate such a need is an alias `pandoc` created with the content of `HUGO_PANDOC` (default: `pandoc-default`) upon initiation.
The `pandoc` executable is renamed to `pandoc-default` as a new `pandoc` script is provided to hanle the `HUGO_PANDOC` evironment variable.
The `pandoc` executable is renamed to `pandoc-default` as a new `pandoc` script is provided to handle the `HUGO_PANDOC` environment variable.

Example of explicit setting `pandoc` alias:

Expand Down
2 changes: 1 addition & 1 deletion src/bin/bump
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

if [ ! $RELEASE ]; then
echo "Variabel \$RELEASE is not set."
echo "Variable \$RELEASE is not set."
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion src/files/_script/golang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
set -u

# Variables
GOLANG_VERSION="1.21.2"
GOLANG_VERSION="1.21.5"

# Architecture
TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
Expand Down
2 changes: 1 addition & 1 deletion src/files/_script/nodejs-glibc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
set -u

# Variables
NODE_VERSION="20.8.0"
NODE_VERSION="21.4.0"

# Architecture
TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
Expand Down
2 changes: 1 addition & 1 deletion src/files/_script/nodejs-musl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
set -u

# Variables
NODE_VERSION="20.8.0"
NODE_VERSION="21.4.0"

# Architecture
TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
Expand Down
2 changes: 1 addition & 1 deletion src/files/_script/pandoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
set -u

# Variables
PANDOC_VERSION="3.1.8"
PANDOC_VERSION="3.1.9"

# Architecture
TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
Expand Down