Skip to content

Commit

Permalink
fix: updates
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Buhl <[email protected]>
  • Loading branch information
onedr0p committed Dec 31, 2024
1 parent eda7cff commit d5bf27f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pre-pull-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Default Images
runs-on: ubuntu-latest
outputs:
images: ${{ steps.default-images.outputs.images }}
images: ${{ steps.extract-images.outputs.images }}
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
"aqua:mikefarah/yq" = "latest"
"pipx:flux-local" = "latest"
- name: Extract Images
- name: Gather Images
shell: bash
run: |
flux-local get cluster \
Expand All @@ -68,8 +68,8 @@ jobs:
yq -r '[.. | .images? | select(. != null)] | flatten | sort | unique | .[]' \
images.yaml > images.txt
- name: Output Images
id: images
- name: Extract Images
id: extract-images
shell: bash
run: |
cat images.txt
Expand All @@ -81,7 +81,7 @@ jobs:
name: Pull Request Images
runs-on: ubuntu-latest
outputs:
images: ${{ steps.pull-request-images.outputs.images }}
images: ${{ steps.extract-images.outputs.images }}
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
"aqua:mikefarah/yq" = "latest"
"pipx:flux-local" = "latest"
- name: Extract Images
- name: Gather Images
shell: bash
run: |
flux-local get cluster \
Expand All @@ -125,8 +125,8 @@ jobs:
yq -r '[.. | .images? | select(. != null)] | flatten | sort | unique | .[]' \
images.yaml > images.txt
- name: Output Images
id: images
- name: Extract Images
id: extract-images
shell: bash
run: |
cat images.txt
Expand Down

0 comments on commit d5bf27f

Please sign in to comment.