├── .github ├── FUNDING.yml └── workflows │ ├── builder.yml │ └── test.yml ├── LICENSE ├── README.md ├── Singularity ├── Singularity.pokemon ├── Singularity.salad ├── VERSION └── img ├── releases.png └── shpc.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: vsoch 2 | -------------------------------------------------------------------------------- /.github/workflows/builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/.github/workflows/builder.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/README.md -------------------------------------------------------------------------------- /Singularity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/Singularity -------------------------------------------------------------------------------- /Singularity.pokemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/Singularity.pokemon -------------------------------------------------------------------------------- /Singularity.salad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/Singularity.salad -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.12 2 | -------------------------------------------------------------------------------- /img/releases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/img/releases.png -------------------------------------------------------------------------------- /img/shpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/singularity-deploy/HEAD/img/shpc.png --------------------------------------------------------------------------------