fix: installer token filter, plist env slots; VERSION 0.33.1
Some checks are pending
ci / web (push) Waiting to run
Desktop App / Build Linux (amd64) (push) Waiting to run
Desktop App / Attach to Release (push) Blocked by required conditions

This commit is contained in:
dtoro
2026-08-15 22:44:03 +02:00
parent fdd67f6147
commit e95e663d80
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
0.33.0
0.33.1

View File

@@ -19,7 +19,7 @@ infisical_get() {
[ -x "$OIKOS_CLI" ] || return 1
(cd "$HOME/Projects/oikos" && set -a && . ./.env 2>/dev/null && set +a \
&& OIKOS_INFISICAL_SITE_URL=http://localhost:8080 "$OIKOS_CLI" secret get "$1" 2>/dev/null) \
| grep -E '^[0-9a-f]{40,}$' | head -n1
| grep -v '^{' | grep -v '^$' | head -n1
}
HMAC="${WEBHOOK_HMAC_SECRET:-$(infisical_get webhook_hmac-secret || true)}"