├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── create-build.js ├── entrypoint.sh └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/README.md -------------------------------------------------------------------------------- /create-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/create-build.js -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/actions/HEAD/package.json --------------------------------------------------------------------------------