diff --git a/contents/blog/automating-a-software-company-with-github-actions.md b/contents/blog/automating-a-software-company-with-github-actions.md index 481ab5c2b..53f8395e8 100644 --- a/contents/blog/automating-a-software-company-with-github-actions.md +++ b/contents/blog/automating-a-software-company-with-github-actions.md @@ -329,7 +329,7 @@ jobs: ``` Hint: Since Docker Hub has [removed free autobuilds](https://www.docker.com/blog/changes-to-docker-hub-autobuilds/), but GitHub Actions are still free for public repositories (and with limits for private ones), you can build Docker images and then push them to Docker Hub very similar to the above workflow. -Just add the login action [`docker/login-action`](https://github.com/marketplace/actions/docker-login) at the beginning, set `push` to `false`, _et voila_, now you are pushing. +Just add the login action [`docker/login-action`](https://github.com/marketplace/actions/docker-login) at the beginning, set `push` to `true`, _et voila_, now you are pushing. ### Putting releases out diff --git a/src/templates/postTemplate.js b/src/templates/postTemplate.js index 8a88e7369..ef2058936 100644 --- a/src/templates/postTemplate.js +++ b/src/templates/postTemplate.js @@ -72,7 +72,7 @@ function Template(props) {

{frontmatter.title}

)}