fix: correct typos in documentation and Justfile (#6686)
Signed-off-by: Bodhi Silberling <bodhirussellsilberling@yahoo.com>
This commit is contained in:
committed by
GitHub
parent
d58ed85c53
commit
5971e2f187
@@ -333,7 +333,7 @@ release-notes old:
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
git log --pretty=format:"- %s" {{ old }}..v$(just get-tag-version)
|
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 { "/" }
|
s := if os() == "windows" { "\\" } else { "/" }
|
||||||
|
|
||||||
### testing/debugging
|
### testing/debugging
|
||||||
@@ -372,14 +372,14 @@ win-app-deps:
|
|||||||
cd ui{{s}}desktop ; npm install
|
cd ui{{s}}desktop ; npm install
|
||||||
|
|
||||||
### Windows copy {release|debug} files to ui\desktop\src\bin
|
### Windows copy {release|debug} files to ui\desktop\src\bin
|
||||||
### s = os depenent file seperator
|
### s = os dependent file separator
|
||||||
### profile = release or debug
|
### profile = release or debug
|
||||||
win-copy-win profile:
|
win-copy-win profile:
|
||||||
copy target{{s}}{{profile}}{{s}}*.exe ui{{s}}desktop{{s}}src{{s}}bin
|
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
|
copy target{{s}}{{profile}}{{s}}*.dll ui{{s}}desktop{{s}}src{{s}}bin
|
||||||
|
|
||||||
### "Other" copy {release|debug} files to ui/desktop/src/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
|
### profile = release or debug
|
||||||
win-copy-oth profile:
|
win-copy-oth profile:
|
||||||
find target{{s}}{{profile}}{{s}} -maxdepth 1 -type f -executable -print -exec cp {} ui{{s}}desktop{{s}}src{{s}}bin \;
|
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
|
### Only copy binaries, npm install, start-gui
|
||||||
### profile = release or debug
|
### profile = release or debug
|
||||||
### s = os depenent file seperator
|
### s = os dependent file separator
|
||||||
win-app-run profile:
|
win-app-run profile:
|
||||||
just win-app-copy {{profile}}
|
just win-app-copy {{profile}}
|
||||||
just win-app-deps
|
just win-app-deps
|
||||||
|
|||||||
@@ -232,7 +232,7 @@ This is just one example of what's possible. Feel free to modify your GitHub Act
|
|||||||
|
|
||||||
## Security Considerations
|
## 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**
|
1. **Secret Management**
|
||||||
- Store your sensitive credentials (like API keys) as GitHub Secrets.
|
- Store your sensitive credentials (like API keys) as GitHub Secrets.
|
||||||
|
|||||||
Reference in New Issue
Block a user