Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust readme with steps to release and update dependencies #48

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,26 @@ make uninstall
4. `go build .`
5. Now move the generated `kustomize` binary into the `bin` directory in this project (create it if it doesn't exist `mkdir bin`): `mv kustomize <project path>/bin/kustomize`

### Update Go and dependencies
1. Update Go version in
1. [go.mod](./go.mod)
2. [.github/workflows/release.yml](./.github/workflows/release.yml)
3. [.github/workflows/test.yml](./.github/workflows/test.yml)
4. [Dockerfile](./Dockerfile)
2. Update Go dependencies
```shell
go get -u ./...
go mod tidy
go mod vendor
```
3. Run `make test`
4. Create and merge PR

### Release
1. Create release manifest files by running `IMG_TAG=vX.Y.Z make release-manifests`
2. Create and merge PR
3. [Trigger the `release` GitHub action workflow](https://github.com/digitalocean/do-operator/actions/workflows/release.yml)

## Contributing

At DigitalOcean we value and love our community!
Expand Down