Skip to content

Commit

Permalink
not having high hopes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
paul1r committed Feb 5, 2025
1 parent ede0652 commit d2aa02e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,12 @@
echo "platform=${platform}" >> $GITHUB_OUTPUT
echo "platform_short=$(echo ${{ matrix.arch }} | cut -d / -f 2)" >> $GITHUB_OUTPUT
"working-directory": "release"
- "id": "prepare-tag"
"name": "Prepare tag name"
"run": |
arch=$(echo ${{ matrix.arch }} | tr '/' '-')
echo "IMAGE_TAG=${{ steps.weekly-version.outputs.image_name }}:${{ steps.weekly-version.outputs.image_version }}-${arch}" >> $GITHUB_OUTPUT
- "id": "build-push"
"name": "Build and push"
"timeout-minutes": "${{ fromJSON(env.BUILD_TIMEOUT) }}"
Expand All @@ -517,7 +523,7 @@
"outputs": "type=image,push=true"
"platforms": "${{ matrix.arch }}"
"provenance": true
"tags": "${{ steps.weekly-version.outputs.image_name }}:${{ steps.weekly-version.outputs.image_version }}-$(echo ${{ matrix.arch }} | tr '/' '-')"
"tags": "${{ steps.prepare-tag.outputs.IMAGE_TAG }}"
- "id": "digest"
"name": "Process image digest"
"run": |
Expand Down

0 comments on commit d2aa02e

Please sign in to comment.