From 2925340368da5c74104f7c9befa47ee27f49c02d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 19 Oct 2021 21:17:18 +0300 Subject: [PATCH] docs(readme): update GitLab CI/CD section --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e5a3da1b3a..4caf4a867c 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ - [Examples](#examples) - [Docker](#docker) - [GitHub Action](#github-action) -- [GitLab CI/CD](#gitlab-ci) +- [GitLab CI/CD](#gitlab-cicd) - [Configuration File](#configuration-file) - [changelog](#changelog) - [header](#header) @@ -278,7 +278,7 @@ Also, see the [continuous deployment workflow](./.github/workflows/cd.yml) of th It is possible to generate changelogs using [GitLab CI/CD](https://docs.gitlab.com/ee/ci/). -This minimal example creates artifacts that can be use on another job. +This minimal example creates artifacts that can be used on another job. ```yml - changelog: @@ -293,7 +293,7 @@ This minimal example creates artifacts that can be use on another job. - git-cliff -r . > CHANGELOG.md artifacts: paths: - - CHANGELOG.md + - CHANGELOG.md ``` Please note that the stage is `doc` and has to be changed accordingly to your need.