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