From c33a56e2f7cf46d4d4a7fc4e367d1c0392da683a Mon Sep 17 00:00:00 2001 From: Hrishikesh Kadam Date: Sun, 5 Sep 2021 22:05:25 +0530 Subject: [PATCH] Minor changes to ci-cd/github-actions.md --- ci-cd/github-actions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-cd/github-actions.md b/ci-cd/github-actions.md index f2b7677f33..f4ea924fab 100644 --- a/ci-cd/github-actions.md +++ b/ci-cd/github-actions.md @@ -183,7 +183,7 @@ on: ``` {% endraw %} -This ensures that the main CI will only trigger if we tag our commits with `V.n.n.n.` Let’s test this. For example, run the following command: +This ensures that the main CI will only trigger if we tag our commits with something like `v1.0.2` Let’s test this. For example, run the following command: ```console $ git tag -a v1.0.2 @@ -228,7 +228,7 @@ Remember to change how the image is tagged. The following example keeps ‘lates ![Update tagged images](images/ghcr-logic.png){:width="500px"} -Now, we will have two different flows: one for our changes to master, and one for our pull requests. Next, we need to modify what we had before to ensure we are pushing our PRs to the GitHub registry rather than to Docker Hub. +Now, we will have two different flows: one for our changes to master, and one for our pushed tags. Next, we need to modify what we had before to ensure we are pushing our PRs to the GitHub registry rather than to Docker Hub. ## Conclusion