├── .github ├── CODEOWNERS ├── dependabot.yml ├── release.yml ├── scripts │ └── release.sh └── workflows │ ├── bump-versions.yml │ ├── release.yml │ └── test.yml ├── LICENSE ├── README.md ├── action.yml ├── project.toml └── test ├── polarify └── recipe.yaml └── test-package └── recipe.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pavelzw 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/.github/scripts/release.sh -------------------------------------------------------------------------------- /.github/workflows/bump-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/.github/workflows/bump-versions.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/action.yml -------------------------------------------------------------------------------- /project.toml: -------------------------------------------------------------------------------- 1 | version = "0.2.34" 2 | -------------------------------------------------------------------------------- /test/polarify/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/test/polarify/recipe.yaml -------------------------------------------------------------------------------- /test/test-package/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build-action/HEAD/test/test-package/recipe.yaml --------------------------------------------------------------------------------