Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix image job - two job's can't use the same id #88

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log in to Quay container image registry
- name: Log in to the Quay container image registry
uses: docker/#-action@v3
with:
registry: ${{ env.QUAY_REGISTRY }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
images: ${{ env.QUAY_REGISTRY }}/${{ env.QUAY_UI_IMAGE_NAME }}

- name: Build and push ui image to ghcr.io
id: push
id: push-ui-ghcr
uses: docker/build-push-action@v5
with:
context: .
Expand All @@ -84,7 +84,7 @@ jobs:
push-to-registry: true

- name: Build and push ui image to quay.io
id: push
id: push-ui-quay
uses: docker/build-push-action@v5
with:
context: .
Expand Down