Skip to content

Commit

Permalink
Merge pull request #48 from digitalocean/udpate-dependencies-upgrade-…
Browse files Browse the repository at this point in the history
…steps

Adjust readme with steps to release and update dependencies
  • Loading branch information
llDrLove authored Sep 26, 2023
2 parents 9c195df + ae71ec3 commit 425c7fe
Showing 1 changed file with 20 additions and 0 deletions.
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

0 comments on commit 425c7fe

Please sign in to comment.