-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dr b s patch 8 #33
Dr b s patch 8 #33
Conversation
Added quay.io login for push to quay.io
Removed typo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the syntax is right, QUAY.io login will be supported.
Added quay.io/stevebs/ in front of heatcluster.
@@ -19,8 +19,12 @@ jobs: | |||
env: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lines 18-27 (your Docker login step) might not work, or maybe it might. I know there's a lot of ways to do this.
This is how I log into quay:
- name: Login to Quay
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
.github/workflows/docker.yml
Outdated
@@ -30,14 +34,14 @@ jobs: | |||
id: buildx | |||
uses: docker/setup-buildx-action@v2 | |||
|
|||
- name: Build and push to <insert repo> | |||
- name: Build and push to quay.io/stevebs/heatcluster |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you have a typo here
Your repository name is quay.io/stevebs22/heatcluster (https://quay.io/repository/stevebs22/heatcluster)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed this. Thanks!
.github/workflows/docker.yml
Outdated
uses: docker/build-push-action@v3 | ||
with: | ||
file: Dockerfile | ||
build-args: HEATCLUSTER_VER=${{ github.event.inputs.version }} | ||
push: true | ||
target: app | ||
tags: heatcluster:${{ github.event.inputs.version }} | ||
tags: quay.io/stevebs/heatcluster:${{ github.event.inputs.version }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment above (I think there is a typo here)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed this, too! Thanks
.github/workflows/docker.yml
Outdated
@@ -46,4 +50,4 @@ jobs: | |||
build-args: HEATCLUSTER_VER=${{ github.event.inputs.version }} | |||
push: true | |||
target: app | |||
tags: heatcluster:latest | |||
tags: quay.io/stevebs/heatcluster:latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment above (I think there is a typo here)
Did you set up a robot account for quay? It will need access to your heatcluster repo with write access. |
Corrected quay.io username (stevebs -> stevebs22) and added quay.io login.
I have corrected docker.yml |
Setting up the quay robot account now. |
Robot account is set up. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome!
I vote you merge this and test it.
Thanks for ALL your help!
The latest (v1.0.2c-2024-01-04) is successfully pushed to quay.io.
Stephen M. Beckstrom-Sternberg, PhD
Bioinformatics Contractor
Arizona State Public Health Lab
Arizona Department of Health Services
Cell: (602) 653-5011
Email: ***@***.***
… On Jan 4, 2024, at 11:17 AM, Young ***@***.***> wrote:
@erinyoung approved this pull request.
Awesome!
I vote you merge this and test it.
—
Reply to this email directly, view it on GitHub <#33 (review)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AVTVLJUJRZFBJKG5JKJPYSLYM3W3FAVCNFSM6AAAAABBMB2GOKVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMYTQMBUG42DAOBVGQ>.
You are receiving this because you modified the open/close state.
--
CONFIDENTIALITY NOTICE: This e-mail is the property of the Arizona
Department of Health Services and contains information that may be
PRIVILEGED, CONFIDENTIAL, or otherwise exempt from disclosure by applicable
law. It is intended only for the person(s) to whom it is addressed. If
you have received this communication in error, please do not retain or
distribute it. Please notify the sender immediately by e-mail at the
address shown above and delete the original message. Thank you.
|
Added Quay.io github secrets and login info.