Skip to content

Commit

Permalink
fix: drop dependency on remove kubectl-retina job (microsoft#120)
Browse files Browse the repository at this point in the history
The kubectl-retina job was removed in microsoft#112. Remove the dependency on it
from the manifests job so that images may be published.

Signed-off-by: Evan Baker <rbtr@users.noreply.github.com>
  • Loading branch information
rbtr authored Mar 22, 2024
1 parent 4eef35e commit 245849f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Release Retina Container Images

on:
push:
branches: [ main ]
tags: [ "v*" ]
branches: [main]
tags: ["v*"]

permissions:
contents: read
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin

Expand All @@ -115,19 +115,19 @@ jobs:
manifests:
name: Generate Manifests
runs-on: ubuntu-latest
needs: [retina-images, retina-win-images, operator-images, kubectl-retina-images]
needs: [retina-images, retina-win-images, operator-images]

strategy:
matrix:
component: ["retina", "operator", "kubectl-retina"]
component: ["retina", "operator"]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin

Expand Down

0 comments on commit 245849f

Please sign in to comment.