From eeaa2f4a8a31d42e22f5b99181bcdba85df4f61a Mon Sep 17 00:00:00 2001 From: William Douglas Date: Mon, 17 Jun 2024 09:48:54 -0700 Subject: [PATCH] Fix typo and missing job dependency --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c6befcc..39e4fed 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,11 +25,12 @@ jobs: - name: Build and Push httpd run: ./build-and-push-images.sh httpd ${{ github.event.ref }} release-matrix: + needs: release-pre-reqs if: (github.event_name == 'create' && github.event.ref_type == 'tag') name: Release Matrix strategy: matrix: - iamge: ['cgit', 'golang', 'haproxy', 'iperf', 'mariadb', 'memcached', 'nginx', 'node', 'numpy-mp', 'perl', 'php', 'php-fpm', 'postgres', 'python', 'rabbitmq', 'r-base', 'redis', 'ruby', 'tesseract-ocr'] + image: ['cgit', 'golang', 'haproxy', 'iperf', 'mariadb', 'memcached', 'nginx', 'node', 'numpy-mp', 'perl', 'php', 'php-fpm', 'postgres', 'python', 'rabbitmq', 'r-base', 'redis', 'ruby', 'tesseract-ocr'] runs-on: ubuntu-latest steps: - name: Code Checkout