Skip to content

Commit

Permalink
fix base_image_tags.json generation
Browse files Browse the repository at this point in the history
  • Loading branch information
gpelouze committed Feb 16, 2024
1 parent 05662df commit 98724cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/make.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Generate base_image_tags.json
run: |
find ./flavors -mindepth 2 -maxdepth 2 -name 'flavor_config.yaml' | \
xargs yq ea -o=j '[.] | map({"key": .flavor_name, "value": {"build": "ghcr.io/qcdis/naavre/naavre-cell-build-" + .flavor_name + ":${{ github.ref_name }}", "runtime": "ghcr.io/qcdis/naavre/naavre-cell-" + .flavor_name + ":${{ github.ref_name }}"}}) | from_entries' \
xargs yq ea -o=j '[.] | map({"key": .flavor_name, "value": {"build": "ghcr.io/qcdis/naavre/naavre-cell-build-" + .flavor_name + ":${{ github.ref_name }}", "runtime": "ghcr.io/qcdis/naavre/naavre-cell-runtime-" + .flavor_name + ":${{ github.ref_name }}"}}) | from_entries' \
| tee /tmp/base_image_tags.json
- name: Add base_image_tags.json to release
Expand Down

0 comments on commit 98724cb

Please sign in to comment.