├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── cosign.pub ├── files ├── scripts │ └── example.sh └── system │ ├── etc │ └── .gitkeep │ └── usr │ └── .gitkeep ├── modules └── .gitkeep └── recipes └── recipe.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @xynydev @fiftydinar 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/README.md -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/cosign.pub -------------------------------------------------------------------------------- /files/scripts/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/files/scripts/example.sh -------------------------------------------------------------------------------- /files/system/etc/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /files/system/usr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blue-build/template/HEAD/recipes/recipe.yml --------------------------------------------------------------------------------