feat: add update command which looks at os and tries to update #42
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the build and release process, as well as the addition of a new update command for the
cocommit
CLI tool. The most important changes are summarized below:Build and Release Process:
.github/workflows/build_test_release.yml
andci/build_test_release.go
. ([[1]](https://github.com/Slug-Boi/cocommit/pull/42/files#diff-d8b5fc8d0a07a901e2f4e46524967df2ef586996a91e0fdcba0fea049171311fL43-R53)
,[[2]](https://github.com/Slug-Boi/cocommit/pull/42/files#diff-c75ab1b931458a8962077f535d1d5e8dc3c8d72e06eedc73c807679e7566a3e1L47-R47)
)aarch64
on Darwin inci/build_test_release.go
. ([ci/build_test_release.goR59-R69](https://github.com/Slug-Boi/cocommit/pull/42/files#diff-c75ab1b931458a8962077f535d1d5e8dc3c8d72e06eedc73c807679e7566a3e1R59-R69)
)New Update Command:
update
command insrc/cmd/update.go
that allows users to update thecocommit
CLI tool either by running an direct update and replace process or using thego get
command with a-g
flag. ([src/cmd/update.goR1-R211](https://github.com/Slug-Boi/cocommit/pull/42/files#diff-f7a74bdb21647930a3ab58b74971361aeb9c65bac68220b6847175119795c646R1-R211)
)resolves #38
resolves #39