mirror of
https://github.com/docker/login-action
synced 2025-01-19 03:46:01 +00: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
1 changed files with 31 additions and 0 deletions
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…
Add table
Reference in a new issue