Skip to content

Commit

Permalink
fix syntax for github actions yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Aug 30, 2024
1 parent aac2c42 commit 65c964a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build-manual-crf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
registry: docker.io
pushImage: true
tags: |
latest-develop${{ github.event.inputs.suffix && '-' + github.event.inputs.suffix || '' }}
latest-crf${{ github.event.inputs.suffix && '-' + github.event.inputs.suffix || '' }}
latest-develop${{ github.event.inputs.suffix != '' && '-' || '' }}${{ github.event.inputs.suffix }}
latest-crf${{ github.event.inputs.suffix != '' && '-' || '' }}${{ github.event.inputs.suffix }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 65c964a

Please sign in to comment.