We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent2976879 commit5c4def2Copy full SHA for 5c4def2
README.md
@@ -87,15 +87,21 @@ To run these integration tests locally:
87
>For example,`CODER_IMAGE=example.com/repo/coder CODER_VERSION=foobar make test-integration`.
88
89
###How to create a new release
90
+
91
>[!Warning]
->Before creating a new release, make sure you have pulled the latest commit from the main branch i.e.`git pull origin main`
92
+>
93
+>- Before creating a new release, make sure you have pulled the latest commit from the main branch i.e.`git pull origin main`
94
+>- If you have already published a previous tag, make sure you do not tag the same commit with the new tag.
95
+> See:[goreleaser-action/512](https://github.com/goreleaser/goreleaser-action/issues/512)
96
97
1. Create a new tag with a version number (following semantic versioning):
98
99
```console
100
git tag -a v2.1.2 -m "v2.1.2"
101
```
102
103
2. Push the tag to the remote repository:
104
105
106
git push origin tag v2.1.2
107