├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.rb └── entrypoint.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mscoutermarsh/ruby-action-recipe/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mscoutermarsh/ruby-action-recipe/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mscoutermarsh/ruby-action-recipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mscoutermarsh/ruby-action-recipe/HEAD/README.md -------------------------------------------------------------------------------- /action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mscoutermarsh/ruby-action-recipe/HEAD/action.rb -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mscoutermarsh/ruby-action-recipe/HEAD/entrypoint.sh --------------------------------------------------------------------------------