An open API service indexing awesome lists of open source software.

https://github.com/cmuench/drone-plugin-nexus

Plugin for drone-ci to upload an artifact to nexus server
https://github.com/cmuench/drone-plugin-nexus

artifacts component drone-ci drone-plugin nexus nexus3 upload

Last synced: 7 months ago
JSON representation

Plugin for drone-ci to upload an artifact to nexus server

Awesome Lists containing this project

README

          

# Drone Nexus Artifact Upload Plugin

## Pipeline Example

### RAW Repository

```yaml
kind: pipeline
type: docker
name: default

steps:
- name: upload_artifact
image: cmuench/drone-nexus
settings:
url: http://your-nexus-server.example
curl_options: -v # optional
username: admin
password: your-password
repository_type: raw
repository: my-repo
asset_file: myfile.txt
mimetype: "text/plain" # options -> if empty we will try to detect
remote_path: foo/bar/zoz
remote_filename: myfile.txt
```