Skip to content

Commit

Permalink
[FIX] - CI Images Workflow (#1204)
Browse files Browse the repository at this point in the history
fix: there was a typo in the bash script
  • Loading branch information
gambol99 committed Jan 23, 2024
1 parent f247fd5 commit 069c68b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Image Versions

on:
schedule:
- cron: '37 9 * * 2'
- cron: "37 9 * * 2"
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
export IMAGE="${{ matrix.image }}:ci-${VERSION##v}"
fi
if [[ "${{ matrix.image }}" == "bridgecrew/checkov" ]]; then
export IMAGE="${{ matrix.image }}:${VERSION}-pyston
export IMAGE="${{ matrix.image }}:${VERSION}-pyston"
fi
yq e '.${{ matrix.value }} = strenv(IMAGE)' -i charts/terranetes-controller/values.yaml
Expand All @@ -58,6 +58,6 @@ jobs:
with:
branch-suffix: timestamp
delete-branch: true
title: '[IMAGES] - ${{ matrix.name }} Image Update'
title: "[IMAGES] - ${{ matrix.name }} Image Update"
body: |
Updating the ${{ matrix.name }} image in the helm values to the latest

0 comments on commit 069c68b

Please sign in to comment.