Skip to content

Commit

Permalink
correct remaining references to akuityio (akuity#128)
Browse files Browse the repository at this point in the history
Signed-off-by: Kent <kent.rancourt@gmail.com>
  • Loading branch information
krancour authored Apr 7, 2023
1 parent 73335f8 commit 9f5f2d0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/akuityio/bookkeeper-prototype
images: ghcr.io/akuity/bookkeeper-prototype
flavor: latest=false
tags: type=semver,pattern={{raw}}
- name: Build and push
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bookkeeper -- Environment Branches Utility

![CI](https://github.com/akuityio/bookkeeper-prototype/actions/workflows/ci.yaml/badge.svg)
![CI](https://github.com/akuity/bookkeeper-prototype/actions/workflows/ci.yaml/badge.svg)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)

<img width="80" align="left" src="logo.png" style="right-margin: 20px"/>
Expand Down Expand Up @@ -37,7 +37,7 @@ for more info on how to get started quickly and easily.
## Support & Feedback

To report an issue, request a feature, or ask a question, please open an issue
[here](https://github.com/akuityio/bookkeeper-prototype/issues).
[here](https://github.com/akuity/bookkeeper-prototype/issues).

## Code of Conduct

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/30-how-to-guides/30-docker-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ easiest option for experimenting locally with Bookkeeper!
Example usage:

```shell
docker run -it ghcr.io/akuityio/bookkeeper-prototype:v0.1.0-alpha.2-rc.8 \
docker run -it ghcr.io/akuity/bookkeeper-prototype:v0.1.0-alpha.2-rc.8 \
bookkeeper render \
--repo https://github.com/<your GitHub handle>/bookkeeper-demo-deploy \
--repo-username <your GitHub handle> \
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/30-how-to-guides/40-go-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Bookkeeper's functionality is available as a [Go](https://go.dev/) module.
To add the module to your project:

```shell
go get github.com/akuityio/bookkeeper
go get github.com/akuity/bookkeeper
```

Then instantiate an implementation of the `bookkeeper.Service` interface and
invoke the `RenderManifests()` function:

```golang
import "github.com/akuityio/bookkeeper"
import "github.com/akuity/bookkeeper"

// ...

Expand Down
2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const config = {
position: 'left',
},
{
href: 'https://github.com/akuityio/bookkeeper-prototype',
href: 'https://github.com/akuity/bookkeeper-prototype',
label: 'GitHub',
position: 'right',
},
Expand Down
4 changes: 2 additions & 2 deletions validation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ func TestValidateAndCanonicalizeRequest(t *testing.T) {
},
Commit: " 1abcdef2 ",
TargetBranch: " refs/heads/env/dev ",
Images: []string{" akuityio/some-image "}, // no good
Images: []string{" akuity/some-image "}, // no good
},
assertions: func(req RenderRequest, err error) {
require.NoError(t, err)
require.Equal(t, "https://github.com/akuity/foobar", req.RepoURL)
require.Equal(t, "foobar", req.RepoCreds.Password)
require.Equal(t, "1abcdef2", req.Commit)
require.Equal(t, "env/dev", req.TargetBranch)
require.Equal(t, []string{"akuityio/some-image"}, req.Images)
require.Equal(t, []string{"akuity/some-image"}, req.Images)
},
},
}
Expand Down

0 comments on commit 9f5f2d0

Please sign in to comment.