diff --git a/Justfile b/Justfile index e7a6ea9d93..04d84aa791 100644 --- a/Justfile +++ b/Justfile @@ -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 diff --git a/documentation/docs/tutorials/cicd.md b/documentation/docs/tutorials/cicd.md index 58e8c64074..a41ec9950e 100644 --- a/documentation/docs/tutorials/cicd.md +++ b/documentation/docs/tutorials/cicd.md @@ -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.