Skip to content

Commit

Permalink
Fix input value escape
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed Mar 2, 2024
1 parent cfdd8d6 commit d4a04c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manual-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
CHROMA_VERSION=${{ github.event.inputs.chroma-version }}
tags: "${{ env.IMAGE_NAME }}:${{ github.event.inputs.chroma-version }}"
- name: Build and push release Docker image
if: ${{ github.event.inputs.latest-version == true && github.event.inputs.ghcr-release == true }}
if: ${{ github.event.inputs.latest-version == 'true' && github.event.inputs.ghcr-release == 'true' }}
uses: docker/[email protected]
with:
context: .
Expand All @@ -80,7 +80,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push release Docker image
if: ${{ github.event.inputs.docker-release == true }}
if: ${{ github.event.inputs.docker-release == 'true' }}
uses: docker/[email protected]
with:
context: .
Expand All @@ -91,7 +91,7 @@ jobs:
CHROMA_VERSION=${{ github.event.inputs.chroma-version }}
tags: "${{ env.IMAGE_NAME }}:${{ github.event.inputs.chroma-version }}"
- name: Build and push release Docker image
if: ${{ github.event.inputs.latest-version == true && github.event.inputs.docker-release == true }}
if: ${{ github.event.inputs.latest-version == 'true' && github.event.inputs.docker-release == 'true' }}
uses: docker/[email protected]
with:
context: .
Expand Down

0 comments on commit d4a04c8

Please sign in to comment.