Skip to content

Commit 957a8f0

Browse files
authored
README: add quay.io usage docs
1 parent 971b76a commit 957a8f0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,30 @@ jobs:
380380

381381
> Replace `<region>` with their respective values from [availability regions](https://docs.cloud.oracle.com/iaas/Content/Registry/Concepts/registryprerequisites.htm#Availab)
382382

383+
### Quay.io
384+
385+
Use a [Robot account](https://docs.quay.io/glossary/robot-accounts.html) with the ability to push to a public/private Quay.io repository.
386+
387+
```yaml
388+
name: ci
389+
390+
on:
391+
push:
392+
branches: master
393+
394+
jobs:
395+
login:
396+
runs-on: ubuntu-latest
397+
steps:
398+
-
399+
name: Login to Quay.io
400+
uses: docker/login-action@v1
401+
with:
402+
registry: quay.io
403+
username: ${{ secrets.QUAY_USERNAME }}
404+
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
405+
```
406+
383407
## Customizing
384408

385409
### inputs

0 commit comments

Comments
 (0)