Skip to content

Commit

Permalink
quay login remove
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetsharma21 authored Jun 21, 2024
1 parent cbbee9d commit a99dbb2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/operator-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ jobs:
with:
go-version-file: './go.mod'

- name: Login to Quay.io
id: podman-login-quay
run: |
podman login --username ${{ secrets.QUAY_ID }} --password ${{ secrets.QUAY_TOKEN }} quay.io
#- name: Login to Quay.io

Check warning on line 27 in .github/workflows/operator-image.yml

View workflow job for this annotation

GitHub Actions / precommit

[comments] missing starting space in comment
# id: podman-login-quay
# run: |
# podman login --username ${{ secrets.QUAY_ID }} --password ${{ secrets.QUAY_TOKEN }} quay.io

- name: Image Build
run: |
make build
make image-build -e IMG=quay.io/project-codeflare/codeflare-operator:dev
make image-push -e IMG=quay.io/project-codeflare/codeflare-operator:dev
#make image-build -e IMG=quay.io/project-codeflare/codeflare-operator:dev
#make image-push -e IMG=quay.io/project-codeflare/codeflare-operator:dev
- name: Logout from Quay.io
if: always() && steps.podman-login-quay.outcome == 'success'
run: |
podman logout quay.io
#- name: Logout from Quay.io

Check warning on line 38 in .github/workflows/operator-image.yml

View workflow job for this annotation

GitHub Actions / precommit

[comments] missing starting space in comment
# if: always() && steps.podman-login-quay.outcome == 'success'
# run: |
# podman logout quay.io

0 comments on commit a99dbb2

Please sign in to comment.