Skip to content
Merged
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
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,27 @@ The bootstrap script automatically:

This enables pulling private GHCR images without specifying `imagePullSecrets` in your Pod specs.

### GitHub Packages (Maven) Authentication

The GitHub token is also required for the self hosted Maven artifacts. Set these properties in `~/.gradle/gradle.properties`:

```properties
github.user=your-github-username
github.token=your-github-personal-access-token
```

The Maven repository configuration expects those properties:

```gradle
maven {
url = uri("https://maven.pkg.github.com/groundsgg/<repository-name>")
credentials {
username = providers.gradleProperty("github.user").get()
password = providers.gradleProperty("github.token").get()
}
}
```

## πŸ› οΈ Essential Commands

| Command | Description |
Expand Down