fix: correct typos in documentation and Justfile (#6686)
Some checks failed
Canary / Prepare Version (push) Has been cancelled
CI / changes (push) Has been cancelled
Deploy Documentation / deploy (push) Has been cancelled
Live Provider Tests / check-fork (push) Has been cancelled
Documentation Site Preview / deploy (push) Has been cancelled
Publish Docker Image / docker (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Canary / build-cli (push) Has been cancelled
Canary / Upload Install Script (push) Has been cancelled
Canary / bundle-desktop (push) Has been cancelled
Canary / bundle-desktop-linux (push) Has been cancelled
Canary / bundle-desktop-windows (push) Has been cancelled
Canary / Release (push) Has been cancelled
CI / Check Rust Code Format (push) Has been cancelled
CI / Build and Test Rust Project (push) Has been cancelled
CI / Lint Rust Code (push) Has been cancelled
CI / Check OpenAPI Schema is Up-to-Date (push) Has been cancelled
CI / Test and Lint Electron Desktop App (push) Has been cancelled
Live Provider Tests / changes (push) Has been cancelled
Live Provider Tests / Build Release Binary (push) Has been cancelled
Live Provider Tests / Smoke Tests (push) Has been cancelled
Live Provider Tests / Smoke Tests (Code Execution) (push) Has been cancelled
Documentation Site Preview / cleanup (push) Has been cancelled

Signed-off-by: Bodhi Silberling <bodhirussellsilberling@yahoo.com>
This commit is contained in:
Bodhi Russell Silberling 2026-01-23 17:44:35 -08:00 committed by GitHub
parent d58ed85c53
commit 5971e2f187
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -333,7 +333,7 @@ release-notes old:
#!/usr/bin/env bash
git log --pretty=format:"- %s" {{ old }}..v$(just get-tag-version)
### s = file seperator based on OS
### s = file separator based on OS
s := if os() == "windows" { "\\" } else { "/" }
### testing/debugging
@ -372,14 +372,14 @@ win-app-deps:
cd ui{{s}}desktop ; npm install
### Windows copy {release|debug} files to ui\desktop\src\bin
### s = os depenent file seperator
### s = os dependent file separator
### profile = release or debug
win-copy-win profile:
copy target{{s}}{{profile}}{{s}}*.exe ui{{s}}desktop{{s}}src{{s}}bin
copy target{{s}}{{profile}}{{s}}*.dll ui{{s}}desktop{{s}}src{{s}}bin
### "Other" copy {release|debug} files to ui/desktop/src/bin
### s = os depenent file seperator
### s = os dependent file separator
### profile = release or debug
win-copy-oth profile:
find target{{s}}{{profile}}{{s}} -maxdepth 1 -type f -executable -print -exec cp {} ui{{s}}desktop{{s}}src{{s}}bin \;
@ -391,7 +391,7 @@ win-app-copy profile="release":
### Only copy binaries, npm install, start-gui
### profile = release or debug
### s = os depenent file seperator
### s = os dependent file separator
win-app-run profile:
just win-app-copy {{profile}}
just win-app-deps

View file

@ -232,7 +232,7 @@ This is just one example of what's possible. Feel free to modify your GitHub Act
## Security Considerations
When running goose in a CI/CD enviroment, keep these security practices in mind:
When running goose in a CI/CD environment, keep these security practices in mind:
1. **Secret Management**
- Store your sensitive credentials (like API keys) as GitHub Secrets.