From c98aae5db087c475c8bbb7a363b40254b14e50ca Mon Sep 17 00:00:00 2001 From: Tim Etchells Date: Mon, 19 Apr 2021 08:42:54 -0400 Subject: [PATCH] Add GH doc link and fix typo Signed-off-by: Tim Etchells --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ee75edc..a87eaf5 100644 --- a/README.md +++ b/README.md @@ -57,13 +57,15 @@ jobs: # Now you can push images, and pull private ones, from quay.io as 'quayuser'. ``` -Logging into `github`'s container registry is just as easy: +Logging into GitHub's container registry is just as easy: ```yaml name: Log in to ghcr.io on: push: +# Refer to https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#github-context +# for information about the 'github' context object. env: REGISTRY_USER: ${{ github.actor }} REGISTRY_PASSWORD: ${{ github.token }} @@ -74,7 +76,7 @@ jobs: name: Log in to GitHub Container Registry runs-on: ubuntu-20.04 steps: - - name: Log in to ghrc.io + - name: Log in to ghcr.io uses: redhat-actions/podman-login@v1 with: username: ${{ env.REGISTRY_USER }}