Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,11 @@ jobs:
- name: Git stuff
# As of go 1.20, this seems to be necessary for invoking git commands
# within the container
run: git config --global --add safe.directory /__w/kargo/kargo
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Run Codegen
run: make codegen
- name: Check nothing has changed
run: git diff --exit-code -- .
run: git -C "$GITHUB_WORKSPACE" diff --exit-code -- .

build-image:
needs: [test-unit, lint-go, lint-charts, lint-proto, lint-and-typecheck-ui, check-codegen]
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ RUN --mount=type=cache,target=/go/pkg/mod --mount=type=cache,target=/root/.cache
COPY api/ api/
COPY pkg/ pkg/
COPY cmd/ cmd/
COPY extended/ extended/
COPY --from=ui-builder /ui/build pkg/server/ui/

ARG VERSION
Expand Down
1 change: 1 addition & 0 deletions extended/docs/UPSTREAM_KARGO_MERGE_PROCEDURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ upstream-kargo-merge/YYYY-MM-DD

Report path:


```text
extended/docs/upstream-kargo-merge-reports/YYYY-MM-DD.yaml
```
Expand Down
Loading