├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.adoc ├── action.yml └── get_jreleaser.java /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jreleaser/release-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jreleaser/release-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jreleaser/release-action/HEAD/README.adoc -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jreleaser/release-action/HEAD/action.yml -------------------------------------------------------------------------------- /get_jreleaser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jreleaser/release-action/HEAD/get_jreleaser.java --------------------------------------------------------------------------------