We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c19e15 commit 775ee40Copy full SHA for 775ee40
.github/workflows/build-container.yml
@@ -73,8 +73,10 @@ jobs:
73
annotations: ${{ steps.meta.outputs.annotations }}
74
- name: Find tag names
75
id: find-tag-names
76
+ env:
77
+ DOCKER_META_JSON: ${{ steps.meta.outputs.json }}
78
run: |
- echo "${{ steps.meta.outputs.json }}" | jq -r '.tags | reverse | map ( { (split(":")[-1]) : . }) | add | keys[] as $k | "\($k)=\(.[$k])"' >> "$GITHUB_OUTPUT"
79
+ echo "$DOCKER_META_JSON" | jq -r '.tags | reverse | map ( { (split(":")[-1]) : . }) | add | keys[] as $k | "\($k)=\(.[$k])"' >> "$GITHUB_OUTPUT"
80
- name: Update deployed image
81
if: steps.find-tag-names.outputs.latest
82
uses: benc-uk/workflow-dispatch@v1
0 commit comments