Skip to content

Commit

Permalink
Merge pull request #10 from lowply/update/0.70.0
Browse files Browse the repository at this point in the history
Update to 0.70.0
  • Loading branch information
lowply authored May 7, 2020
2 parents 17e362b + be4b5c5 commit 91beb77
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.69.0/hugo_extended_0.69.0_Linux-64bit.deb /tmp
RUN dpkg -i /tmp/hugo_extended_0.69.0_Linux-64bit.deb
ADD https://github.com/gohugoio/hugo/releases/download/v0.70.0/hugo_extended_0.70.0_Linux-64bit.deb /tmp
RUN dpkg -i /tmp/hugo_extended_0.70.0_Linux-64bit.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.69.0](https://github.com/gohugoio/hugo/releases/tag/v0.69.0)
- Using [Hugo extended version 0.70.0](https://github.com/gohugoio/hugo/releases/tag/v0.70.0)
- Using [debian:buster-slim](https://hub.docker.com/_/debian/) as the base image

### Example workflow
Expand All @@ -18,13 +18,13 @@ jobs:
- name: Check out code
uses: actions/checkout@master
- name: Build Hugo
uses: lowply/build-hugo@v0.69.0
uses: lowply/build-hugo@v0.70.0
```

### Running it locally

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

### Catch up with Hugo version
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.69.0
0.70.0

0 comments on commit 91beb77

Please sign in to comment.