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
5 changes: 5 additions & 0 deletions .changeset/upset-clubs-yawn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kiji-privacy-proxy": patch
---

Fixed homebrew release
16 changes: 13 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,12 @@ jobs:

### macOS Installation

**Quick Start:**
**Homebrew (recommended):**
```bash
brew install --cask dataiku/tap/kiji-privacy-proxy
```

**Or download manually:**
1. Download `Kiji-Privacy-Proxy-${{ steps.version.outputs.version }}.dmg`
2. Open the DMG and drag to Applications
3. Launch "Kiji Privacy Proxy"
Expand Down Expand Up @@ -396,11 +401,16 @@ jobs:
git config user.name "${APP_SLUG}[bot]"
git config user.email "${APP_SLUG}[bot]@users.noreply.github.com"

if git diff --quiet -- Casks/kiji-privacy-proxy.rb; then
# Stage first, then compare the index against HEAD. `git diff --quiet
# -- <path>` ignores untracked files, so on the first publish (when
# the cask does not yet exist in the tap) it would wrongly report
# "nothing to commit" and never push. `git diff --cached --quiet`
# detects both brand-new and modified files.
git add Casks/kiji-privacy-proxy.rb
if git diff --cached --quiet; then
echo "::notice::Cask already at ${VERSION}, nothing to commit."
exit 0
fi

git add Casks/kiji-privacy-proxy.rb
git commit -m "kiji-privacy-proxy ${VERSION}"
git push origin HEAD:main
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,16 @@ When using AI services like OpenAI or Anthropic, sensitive data in your prompts
### For Users

**macOS (Desktop App):**

Homebrew (recommended):
```bash
# Download from releases
# https://github.com/dataiku/kiji-proxy/releases
brew install --cask dataiku/tap/kiji-privacy-proxy
```

# Install
Or download manually:
```bash
# Download the latest DMG from
# https://github.com/dataiku/kiji-proxy/releases
open Kiji-Privacy-Proxy-*.dmg
# Drag to Applications folder
```
Expand Down
10 changes: 10 additions & 0 deletions docs/01-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ The backend supports two proxy modes that can run simultaneously:

### macOS (Desktop App)

**Homebrew (recommended):**

```bash
brew install --cask dataiku/tap/kiji-privacy-proxy
```

Upgrade later with `brew upgrade --cask kiji-privacy-proxy`.

**Manual download:**

1. Download the latest DMG from [Releases](https://github.com/dataiku/kiji-proxy/releases)
2. Open the DMG file
3. Drag "Kiji Privacy Proxy" to Applications
Expand Down
Loading