Skip to content

Commit

Permalink
Issue #154 : adds fix for workflow dispatch caller
Browse files Browse the repository at this point in the history
  • Loading branch information
SonOfLope committed Sep 17, 2024
1 parent d05baa7 commit 72683b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64
tags: |
${{ inputs.registry }}/${{ inputs.container-name }}:${{ github.event.number }}
${{ inputs.registry }}/${{ inputs.container-name }}:${{ github.event.number || github.run_number }}
${{ inputs.registry }}/${{ inputs.container-name }}:${{ inputs.tag }}
${{ inputs.registry }}/${{ inputs.container-name }}:${{ steps.extract_branch_name.outputs.clean_branch_name }}
${{ inputs.registry }}/${{ inputs.container-name }}:${{ steps.extract_branch_name.outputs.clean_branch_name || 'latest' }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new

Expand Down

0 comments on commit 72683b2

Please sign in to comment.