Skip to content

Commit

Permalink
Merge pull request #46 from lowply/update/0.120.1
Browse files Browse the repository at this point in the history
Update to 0.120.1
  • Loading branch information
lowply committed Oct 31, 2023
2 parents 17dfd1d + 410b53f commit 9c74072
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.119.0/hugo_extended_0.119.0_linux-amd64.deb /tmp
RUN dpkg -i /tmp/hugo_extended_0.119.0_linux-amd64.deb
ADD https://github.com/gohugoio/hugo/releases/download/v0.120.1/hugo_extended_0.120.1_linux-amd64.deb /tmp
RUN dpkg -i /tmp/hugo_extended_0.120.1_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 to build [Hugo](https://gohugo.io/) site.

- Using [Hugo extended version 0.119.0](https://github.com/gohugoio/hugo/releases/tag/v0.119.0)
- Using [Hugo extended version 0.120.1](https://github.com/gohugoio/hugo/releases/tag/v0.120.1)
- Using [debian:buster-slim](https://hub.docker.com/_/debian/) as the base image

## Usage
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Build Hugo
uses: lowply/build-hugo@v0.119.0
uses: lowply/build-hugo@v0.120.1
```
### Versioning
Expand All @@ -35,7 +35,7 @@ Build Hugo version is designed to match with [the Hugo's version](https://github
### Running it locally
```
docker run --rm -w /tmp -v $(pwd):/tmp lowply/build-hugo:v0.119.0
docker run --rm -w /tmp -v $(pwd):/tmp lowply/build-hugo:v0.120.1
```

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

0 comments on commit 9c74072

Please sign in to comment.