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
- Host: GitHub
- URL: https://github.com/cmuench/drone-plugin-nexus
- Owner: cmuench
- Created: 2020-11-07T16:50:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-07T18:03:01.000Z (almost 5 years ago)
- Last Synced: 2025-02-18T12:06:40.747Z (8 months ago)
- Topics: artifacts, component, drone-ci, drone-plugin, nexus, nexus3, upload
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Drone Nexus Artifact Upload Plugin
## Pipeline Example
### RAW Repository
```yaml
kind: pipeline
type: docker
name: defaultsteps:
- 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
```