@rizom/ops 0.2.0-alpha.13 → 0.2.0-alpha.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ import { type RunCommand } from "./run-subprocess";
2
+ export interface SecretsPushOptions {
3
+ env?: NodeJS.ProcessEnv | undefined;
4
+ logger?: ((message: string) => void) | undefined;
5
+ dryRun?: boolean | undefined;
6
+ runCommand?: RunCommand | undefined;
7
+ }
8
+ export interface SecretsPushResult {
9
+ pushedKeys: string[];
10
+ skippedKeys: string[];
11
+ dryRun?: boolean | undefined;
12
+ }
13
+ export declare function pushPilotSecrets(rootDir: string, options?: SecretsPushOptions): Promise<SecretsPushResult>;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.2.0-alpha.13",
7
+ "version": "0.2.0-alpha.16",
8
8
  "type": "module",
9
9
  "exports": {
10
10
  ".": {
@@ -42,4 +42,4 @@ jobs:
42
42
  git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
43
43
  git add views users
44
44
  git commit -m "chore(ops): reconcile pilot outputs"
45
- git push
45
+ git push origin HEAD:${{ github.ref_name }}
@@ -1,7 +1,7 @@
1
1
  # Internal Caddy — path-based routing to brain services.
2
2
  # kamal-proxy terminates TLS externally; this runs inside the container.
3
3
  :80 {
4
- @preview host *-preview.*
4
+ @preview host preview.* *-preview.*
5
5
  handle @preview {
6
6
  reverse_proxy localhost:4321
7
7