├── .github ├── dependabot.yml └── workflows │ ├── generate-installer.yml │ └── list-installers.yml ├── .gitignore ├── LICENSE └── README.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comp-Labs/Download-macOS/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/generate-installer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comp-Labs/Download-macOS/HEAD/.github/workflows/generate-installer.yml -------------------------------------------------------------------------------- /.github/workflows/list-installers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comp-Labs/Download-macOS/HEAD/.github/workflows/list-installers.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comp-Labs/Download-macOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comp-Labs/Download-macOS/HEAD/README.md --------------------------------------------------------------------------------