You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Buildkite API token with Read Packages and Write Packages scopes. Required when `auth-method` is `api-token`. Can also be provided via the `BUILDKITE_API_TOKEN` environment variable for backward compatibility.
84
85
86
+
### Artifactory Provider Options
87
+
88
+
**Note:** Authentication requires a username (typically email) and identity token from your Artifactory instance.
89
+
90
+
#### `registry-url` (string)
91
+
92
+
The Artifactory registry URL (e.g., `myjfroginstance.jfrog.io`). Do not include the protocol (`https://`).
93
+
94
+
#### `username` (string)
95
+
96
+
The username for Artifactory authentication, typically your email address.
97
+
98
+
#### `identity-token` (string)
99
+
100
+
The Artifactory identity token for authentication. Can reference an environment variable using `$VARIABLE_NAME` syntax.
101
+
85
102
## Examples
86
103
87
104
### Push to Amazon ECR
@@ -92,7 +109,7 @@ This example pushes an image to an ECR repository.
92
109
steps:
93
110
- label: ":docker: Build and Push"
94
111
plugins:
95
-
- docker-image-push#v1.0.0:
112
+
- docker-image-push#v1.0.1:
96
113
provider: ecr
97
114
image: my-app
98
115
ecr:
@@ -108,7 +125,7 @@ This example pushes an image to a GAR repository with a specific tag.
108
125
steps:
109
126
- label: ":docker: Build and Push"
110
127
plugins:
111
-
- docker-image-push#v1.0.0:
128
+
- docker-image-push#v1.0.1:
112
129
provider: gar
113
130
image: my-app
114
131
tag: "v1.2.3"
@@ -152,6 +169,24 @@ steps:
152
169
auth-method: oidc
153
170
```
154
171
172
+
### Push to Artifactory Docker Registry
173
+
174
+
This example pushes an image to an Artifactory Docker registry.
0 commit comments