Skip to content

Commit

Permalink
fix error-handling bug and update docs for a release (#157)
Browse files Browse the repository at this point in the history
Signed-off-by: Kent <[email protected]>
  • Loading branch information
krancour authored Aug 1, 2023
1 parent 8d708a1 commit bff91d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/30-how-to-guides/20-github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Render manifests
uses: akuity/[email protected]alpha.2-rc.17
uses: akuity/[email protected].19
with:
personalAccessToken: ${{ secrets.GITHUB_TOKEN }}
targetBranch: env/test
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/akuity/bookkeeper:v0.1.0-alpha.2-rc.17 \
docker run -it ghcr.io/akuity/bookkeeper:v0.1.0-rc.19 \
bookkeeper render \
--repo https://github.com/<your GitHub handle>/bookkeeper-demo-deploy \
--repo-username <your GitHub handle> \
Expand Down
5 changes: 4 additions & 1 deletion rendering.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,12 @@ func preRender(
appConfig.ConfigManagement.Kustomize.EnableHelm,
)
}
if err != nil {
return nil, err
}
appLogger.Debug("completed manifest pre-rendering")
}
return manifests, err
return manifests, nil
}

func renderLastMile(
Expand Down

0 comments on commit bff91d3

Please sign in to comment.