-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(workflows/release): update tag.sh to work with TAGS_FILE (#12)
* misc: vscode settings, empty .env-default * refactor: remove .env local sourcing to avoid confusion * fix(workflows/release): add TAGS_FILE env * refactor(workflows/release): update tag.sh to work with TAGS_FILE * misc: use fatal instead of exit 1 * feat: add LIB_LOADED checks and errors
- Loading branch information
Showing
10 changed files
with
90 additions
and
56 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
// - - - - - - - - YAML - - - - - - - - - | ||
"prettier.configPath": ".prettierrc.yml", | ||
"[yaml]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
// - - - - - - - - BASH - - - - - - - - - | ||
"shellformat.flag": "-i 2 -ln bash", | ||
"[shellscript]": { | ||
"editor.defaultFormatter": "foxundermoon.shell-format" | ||
}, | ||
"shellcheck.customArgs": ["-x"], | ||
// - - - - - - - - OSX - - - - - - - - - | ||
"terminal.integrated.defaultProfile.osx": "bash", | ||
// - - - - - - - - CSPELL - - - - - - - - - | ||
"cSpell.maxDuplicateProblems": 2, | ||
"cSpell.showAutocompleteSuggestions": false, | ||
"cSpell.enableFiletypes": ["shellscript"], | ||
// "cSpell.spellCheckDelayMs": 2000, // needs to be set in user settings json | ||
// - - - - - - - - MISC - - - - - - - - - | ||
// https://github.com/github/vscode-github-actions/issues/222 | ||
"github-actions.use-enterprise": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters