artifactory
This action uploads an artifact to artifactory
artifactory | |
---|---|
Supported platforms | mac, linux, windows |
Author | @koglinjg, @tommeier |
1 Example
artifactory( username: "username", password: "password", endpoint: "https://artifactory.example.com/artifactory/", file: "example.ipa", # File to upload repo: "angular_artifacts", # Artifactory repo repo_path: "/project/appname/example-major.minor.jar" # Path to place the artifact including its filename )
Parameters
Key | Description | Default |
---|---|---|
file |
File to be uploaded to artifactory | |
repo |
Artifactory repo to put the file in | |
repo_path |
Path to deploy within the repo, including filename | |
endpoint |
Artifactory endpoint | |
username |
Artifactory username | |
password |
Artifactory password | |
properties |
Artifact properties hash | {} |
ssl_pem_file |
Location of pem file to use for ssl verification | |
ssl_verify |
Verify SSL | true |
proxy_username |
Proxy username | |
proxy_password |
Proxy password | |
proxy_address |
Proxy address | |
proxy_port |
Proxy port | |
read_timeout |
Read timeout |
* = default value is dependent on the user's system
Lane Variables
Actions can communicate with each other using a shared hash lane_context
, that can be accessed in other actions, plugins or your lanes: lane_context[SharedValues:XYZ]
. The artifactory
action generates the following Lane Variables:
SharedValue | Description |
---|---|
SharedValues::ARTIFACTORY_DOWNLOAD_URL |
The download url for file uploaded |
SharedValues::ARTIFACTORY_DOWNLOAD_SIZE |
The reported file size for file uploaded |
To get more information check the Lanes documentation.
Documentation
To show the documentation in your terminal, run
pantograph action artifactory
CLI
It is recommended to add the above action into your Pantfile
, however sometimes you might want to run one-offs. To do so, you can run the following command from your terminal
pantograph run artifactory
To pass parameters, make use of the :
symbol, for example
pantograph run artifactory parameter1:"value1" parameter2:"value2"
It's important to note that the CLI supports primitive types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. param:"1,2,3"
). Hashes are not currently supported.
It is recommended to add all pantograph actions you use to your Pantfile
.
Source code
This action, just like the rest of pantograph, is fully open source, view the source code on GitHub