mirror of
				https://github.com/docker/login-action.git
				synced 2025-10-31 10:10:09 +08:00 
			
		
		
		
	Updated readme
updated readme to include buildkite packages Signed-off-by: Adrian Lee <kleeadrian@github.com>
This commit is contained in:
		
							parent
							
								
									7ca345011a
								
							
						
					
					
						commit
						0f01ac32a8
					
				
							
								
								
									
										31
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										31
									
								
								README.md
									
									
									
									
									
								
							| @ -24,6 +24,7 @@ ___ | |||||||
|   * [OCI Oracle Cloud Infrastructure Registry (OCIR)](#oci-oracle-cloud-infrastructure-registry-ocir) |   * [OCI Oracle Cloud Infrastructure Registry (OCIR)](#oci-oracle-cloud-infrastructure-registry-ocir) | ||||||
|   * [Quay.io](#quayio) |   * [Quay.io](#quayio) | ||||||
|   * [DigitalOcean](#digitalocean-container-registry) |   * [DigitalOcean](#digitalocean-container-registry) | ||||||
|  |   * [Buildkite Packages](#Buildkite-Packages-Registry) | ||||||
| * [Customizing](#customizing) | * [Customizing](#customizing) | ||||||
|   * [inputs](#inputs) |   * [inputs](#inputs) | ||||||
| * [Contributing](#contributing) | * [Contributing](#contributing) | ||||||
| @ -494,6 +495,36 @@ jobs: | |||||||
|           password: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} |           password: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
|  | ### Buildkite Package Registry | ||||||
|  | 
 | ||||||
|  | Use your Buildkite registered email address and an API access token to authenticate. | ||||||
|  | 
 | ||||||
|  | ```yaml | ||||||
|  | name: ci | ||||||
|  | 
 | ||||||
|  | on: | ||||||
|  |   push: | ||||||
|  |     branches: main | ||||||
|  | 
 | ||||||
|  | jobs: | ||||||
|  |   login: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - | ||||||
|  |         name: Login to Buildkite Package Registry | ||||||
|  |         uses: docker/login-action@v3 | ||||||
|  |         with: | ||||||
|  |           registry: packages.buildkite.com | ||||||
|  |           username: buildkite #All usernames to buildkite packages is "buildkite". Ref https://buildkite.com/docs/package-registries | ||||||
|  |           password: ${{ secrets.BUILDKITE_ACCESS_TOKEN }} | ||||||
|  | ``` | ||||||
|  | Scope required: | ||||||
|  | ``` | ||||||
|  | read_registries | ||||||
|  | write_registries | ||||||
|  | read_packages | ||||||
|  | write_packages | ||||||
|  | ``` | ||||||
| ## Customizing | ## Customizing | ||||||
| 
 | 
 | ||||||
| ### inputs | ### inputs | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Adrian Lee
						Adrian Lee