Skip to content

Commit

Permalink
ci: test
Browse files Browse the repository at this point in the history
Signed-off-by: r3drun3 <[email protected]>
  • Loading branch information
R3DRUN3 committed Jan 10, 2024
1 parent 0869b0c commit 13f2fc2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

outputs:
# Expose the 'images' array as an output
images: ${{ join(needs.images.outputs.images, ',') }}
images: ${{ matrix.images }}

steps:

Expand Down Expand Up @@ -89,8 +89,9 @@ jobs:
- name: Set PATCHED_IMAGES
id: set_patched_images
run: |
IMAGES="${{ needs.immunize.outputs.images }}"
IMAGES="${{ join(needs.immunize.outputs.images, ',') }}"
echo "PATCHED_IMAGES=${IMAGES}" >> $GITHUB_ENV
echo "Patched images: $IMAGES" # Print for debugging
shell: bash

- name: Send Mail Report
Expand All @@ -101,3 +102,4 @@ jobs:
EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }}
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}
PATCHED_IMAGES: ${{ env.PATCHED_IMAGES }}

0 comments on commit 13f2fc2

Please sign in to comment.