axvault 1.9.3 → 1.9.4
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.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -192,7 +192,7 @@ This command requires `--force` or `--yes` to confirm.
|
|
|
192
192
|
|
|
193
193
|
### Container Deployments
|
|
194
194
|
|
|
195
|
-
Container images are published automatically to `registry.j4k.dev/axvault` on every release (multi-arch: amd64 + arm64).
|
|
195
|
+
Container images are published automatically to `registry.j4k.dev/axvault` on every release (multi-arch: amd64 + arm64). To rebuild manually, run `workflow_dispatch` on `publish-image` and provide the required `version` input (for example `1.7.0`).
|
|
196
196
|
|
|
197
197
|
#### Running the Container
|
|
198
198
|
|
|
@@ -392,14 +392,14 @@ When `X-Axvault-Refresh-Failed` is present, the response still returns HTTP 200
|
|
|
392
392
|
|
|
393
393
|
### With axrun (Recommended)
|
|
394
394
|
|
|
395
|
-
Use the `--vault-credential` flag to fetch credentials directly:
|
|
395
|
+
Use the `--vault-credential` flag to fetch credentials directly. Match the credential name to the agent (for example `ci-claude-oauth-token` for Claude and `ci-codex-oauth-credentials` for Codex):
|
|
396
396
|
|
|
397
397
|
```yaml
|
|
398
398
|
- name: Run Claude Review
|
|
399
399
|
env:
|
|
400
400
|
AXVAULT: ${{ secrets.AXVAULT }}
|
|
401
401
|
run: |
|
|
402
|
-
axrun --agent claude --vault-credential ci-oauth-token \
|
|
402
|
+
axrun --agent claude --vault-credential ci-claude-oauth-token \
|
|
403
403
|
--prompt "Review this PR"
|
|
404
404
|
```
|
|
405
405
|
|