├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.go ├── action.yml ├── command.go ├── command_test.go ├── entrypoint.sh ├── go.mod ├── go.sum ├── helper.go ├── helper_test.go ├── main.go ├── options.go ├── options_test.go ├── push.go └── push_test.go /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.go] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/README.md -------------------------------------------------------------------------------- /action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/action.go -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/action.yml -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/command.go -------------------------------------------------------------------------------- /command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/command_test.go -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/go.sum -------------------------------------------------------------------------------- /helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/helper.go -------------------------------------------------------------------------------- /helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/helper_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/main.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/options.go -------------------------------------------------------------------------------- /options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/options_test.go -------------------------------------------------------------------------------- /push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/push.go -------------------------------------------------------------------------------- /push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerray/publish-docker-action/HEAD/push_test.go --------------------------------------------------------------------------------