Skip to content

Commit

Permalink
fix(release-container): remove erroneous $ from expression (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare authored Feb 16, 2025
1 parent c080dea commit db266a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
context: ${{ inputs.context }}
file: ${{ inputs.dockerfile }}
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' && (startsWith(github.event.ref, 'refs/tags/v') || $inputs.push-default-branch && github.event.ref_name == github.event.repository.default_branch) }}
push: ${{ github.event_name != 'pull_request' && (startsWith(github.event.ref, 'refs/tags/v') || inputs.push-default-branch && github.event.ref_name == github.event.repository.default_branch) }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
build-args: ${{ inputs.build-args }}
Expand Down

0 comments on commit db266a2

Please sign in to comment.