4 Commits

Author SHA1 Message Date
Adrian Lee
bfe420ac37 Merge 13f19da876 into 327cd5a69d 2025-01-10 18:02:54 -08:00
Adrian Lee
13f19da876 Update README.md
Updated docs for buildkite package registry

Signed-off-by: Adrian Lee <kleeadrian@github.com>
2024-11-26 12:11:27 +11:00
Adrian Lee
d5aa2ceaed Update README.md
Signed-off-by: Adrian Lee <kleeadrian@github.com>
2024-11-26 11:53:15 +11:00
Adrian Lee
0f01ac32a8 Updated readme
updated readme to include buildkite packages

Signed-off-by: Adrian Lee <kleeadrian@github.com>
2024-11-25 23:13:53 +11:00

View File

@@ -24,6 +24,7 @@ ___
* [OCI Oracle Cloud Infrastructure Registry (OCIR)](#oci-oracle-cloud-infrastructure-registry-ocir)
* [Quay.io](#quayio)
* [DigitalOcean](#digitalocean-container-registry)
* [Buildkite Packages](#buildkite-package-registry)
* [Customizing](#customizing)
* [inputs](#inputs)
* [Contributing](#contributing)
@@ -494,6 +495,43 @@ jobs:
password: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
```
### Buildkite Package Registry
Use your Buildkite registered email address to generate an API access token to authenticate. U
```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".
password: ${{ secrets.BUILDKITE_ACCESS_TOKEN }}
```
**Useful references:**
[Buildkite package Registry](https://buildkite.com/docs/package-registries)
Go to your Buildkite Org/Buildkite Package registry to generate a token
**Working pipeline example:** [https://gist.github.com/kleeadrian/f096878f76b5fb759976adce9550c9a5](https://gist.github.com/kleeadrian/f096878f76b5fb759976adce9550c9a5)
**Scope required:**
```
read_registries
write_registries
read_packages
write_packages
```
## Customizing
### inputs