├── .buildkite └── pipeline.yml ├── .github ├── CODEOWNERS ├── boomper.yml ├── release-drafter.yml └── workflows │ └── draft-release.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── hooks ├── post-command └── pre-command ├── plugin.yml ├── renovate.json └── tests ├── download-compressed.bats ├── download-ignore-missing.bats ├── download.bats ├── upload-compressed.bats ├── upload-ignore-missing.bats └── upload.bats /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/boomper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/.github/boomper.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/README.md -------------------------------------------------------------------------------- /hooks/post-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/hooks/post-command -------------------------------------------------------------------------------- /hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/hooks/pre-command -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/plugin.yml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/download-compressed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/tests/download-compressed.bats -------------------------------------------------------------------------------- /tests/download-ignore-missing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/tests/download-ignore-missing.bats -------------------------------------------------------------------------------- /tests/download.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/tests/download.bats -------------------------------------------------------------------------------- /tests/upload-compressed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/tests/upload-compressed.bats -------------------------------------------------------------------------------- /tests/upload-ignore-missing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/tests/upload-ignore-missing.bats -------------------------------------------------------------------------------- /tests/upload.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite-plugins/artifacts-buildkite-plugin/HEAD/tests/upload.bats --------------------------------------------------------------------------------