Update README.md

This commit is contained in:
Jeff Regan
2019-10-22 10:16:51 -07:00
committed by GitHub
parent a9e3fe155b
commit 310d516030

View File

@@ -123,9 +123,9 @@ git rebase upstream/master
### select a module to release ### select a module to release
``` ```
module="api" # The API module=pluginator # The pluginator executable
module="kustomize" # The kustomize executable module=kustomize # The kustomize executable
module="pluginator" # The pluginator executable module=api # The API
``` ```
### determine the version ### determine the version
@@ -201,7 +201,7 @@ fi
Install [`cloud-build-local`], then run Install [`cloud-build-local`], then run
``` ```
./releasing/localbuild.sh (kustomize|pluginator|api) ./releasing/localbuild.sh $module
``` ```
This should create release artifacts in a local directory. This should create release artifacts in a local directory.
@@ -214,8 +214,14 @@ git push -f upstream $branch
### optionally review tags ### optionally review tags
Local:
``` ```
git tag -l git tag -l
```
Remote:
```
git ls-remote --tags upstream git ls-remote --tags upstream
``` ```