From 957a8f0d4a2db29130cdaa1e42a06f414f902d7a Mon Sep 17 00:00:00 2001 From: Dan Bond Date: Fri, 26 Mar 2021 11:37:33 -0700 Subject: [PATCH 1/2] README: add quay.io usage docs --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 36e7771..85bf055 100644 --- a/README.md +++ b/README.md @@ -380,6 +380,30 @@ jobs: > Replace `` with their respective values from [availability regions](https://docs.cloud.oracle.com/iaas/Content/Registry/Concepts/registryprerequisites.htm#Availab) +### Quay.io + +Use a [Robot account](https://docs.quay.io/glossary/robot-accounts.html) with the ability to push to a public/private Quay.io repository. + +```yaml +name: ci + +on: + push: + branches: master + +jobs: + login: + runs-on: ubuntu-latest + steps: + - + name: Login to Quay.io + uses: docker/login-action@v1 + with: + registry: quay.io + username: ${{ secrets.QUAY_USERNAME }} + password: ${{ secrets.QUAY_ROBOT_TOKEN }} +``` + ## Customizing ### inputs From 92a25936501dc3a7674834204ac46950350ff3b0 Mon Sep 17 00:00:00 2001 From: Dan Bond Date: Fri, 26 Mar 2021 14:58:30 -0700 Subject: [PATCH 2/2] Update TOC --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 85bf055..25ef287 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ ___ * [AWS Elastic Container Registry (ECR)](#aws-elastic-container-registry-ecr) * [AWS Public Elastic Container Registry (ECR)](#aws-public-elastic-container-registry-ecr) * [OCI Oracle Cloud Infrastructure Registry (OCIR)](#oci-oracle-cloud-infrastructure-registry-ocir) + * [Quay.io](#quayio) * [Customizing](#customizing) * [inputs](#inputs) * [Keep up-to-date with GitHub Dependabot](#keep-up-to-date-with-github-dependabot)