From 68dda9215595fa25de3221bafc40327444650d77 Mon Sep 17 00:00:00 2001 From: Jacob Magnusson Date: Thu, 1 Jul 2021 18:39:26 +0200 Subject: [PATCH] docs: fix wording - minor not patch (#324) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dac8478..f14c39b 100644 --- a/README.md +++ b/README.md @@ -247,12 +247,12 @@ jobs: package-name: ${{env.ACTION_NAME}} command: github-release - uses: actions/checkout@v2 - - name: tag major and patch versions + - name: tag major and minor versions if: ${{ steps.release.outputs.release_created }} run: | git config user.name github-actions[bot] git config user.email 41898282+github-actions[bot]@users.noreply.github.com - git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/google-github-actions/release-please-action.git" + git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" git tag -d v${{ steps.release.outputs.major }} || true git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true git push origin :v${{ steps.release.outputs.major }} || true