We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 312d023 commit 8f90b53Copy full SHA for 8f90b53
README.md
@@ -29,9 +29,10 @@ The repos this process pulls from are:
29
30
We use lightweight tags to indicate the environment a specific commit will deploy to:
31
```
32
-git checkout <commit-hash>
33
-git tag dev
34
-git push --tags -f
+git checkout <commit-hash> (if work to be released isn't your working copy)
+git tag -d dev (to remove existing tag)
+git tag dev (set dev tag to HEAD commit)
35
+git push --tags -f (push commit to GH)
36
37
38
### GH Actions
0 commit comments