Skip to content

Commit

Permalink
fix build args
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Nov 28, 2023
1 parent d3c208d commit fb60b69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args:
- VERSION=${{ github.event.inputs.version || github.ref_name }}
build-args: |
VERSION=${{ github.event.inputs.version || github.ref_name }}
- name: Build and push
if: ${{ ! contains( github.ref_name , 'v') }}
Expand All @@ -59,5 +59,5 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args:
- VERSION=${{ github.event.inputs.version || 'latest' }}
build-args: |
VERSION=${{ github.event.inputs.version || 'latest' }}

0 comments on commit fb60b69

Please sign in to comment.