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

Update to 0.134.3 #92

Merged
merged 1 commit into from
Sep 20, 2024
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim
RUN apt-get update -y && apt-get install ca-certificates -y
RUN update-ca-certificates
ADD https://github.com/gohugoio/hugo/releases/download/v0.134.2/hugo_extended_0.134.2_linux-amd64.deb /tmp
RUN dpkg -i /tmp/hugo_extended_0.134.2_linux-amd64.deb
ADD https://github.com/gohugoio/hugo/releases/download/v0.134.3/hugo_extended_0.134.3_linux-amd64.deb /tmp
RUN dpkg -i /tmp/hugo_extended_0.134.3_linux-amd64.deb
ENTRYPOINT ["hugo"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A GitHub Action for building [Hugo](https://gohugo.io/) sites.

- Utilizes [Hugo extended version 0.134.2](https://github.com/gohugoio/hugo/releases/tag/v0.134.2)
- Utilizes [Hugo extended version 0.134.3](https://github.com/gohugoio/hugo/releases/tag/v0.134.3)
- Based on [debian:buster-slim](https://hub.docker.com/_/debian/)

## Usage
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Build Hugo
uses: lowply/build-hugo@v0.134.2
uses: lowply/build-hugo@v0.134.3
```

### Versioning
Expand All @@ -37,7 +37,7 @@ The Build Hugo version aligns with [Hugo's releases](https://github.com/gohugoio
To run it locally, use the following command:

```
docker run --rm -w /tmp -v $(pwd):/tmp lowply/build-hugo:v0.134.2
docker run --rm -w /tmp -v $(pwd):/tmp lowply/build-hugo:v0.134.3
```

## Development
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.134.2
0.134.3