Skip to content

Commit

Permalink
Fix Github Workflows for Release
Browse files Browse the repository at this point in the history
  • Loading branch information
IceS2 committed May 10, 2024
1 parent f5ded45 commit 0209364
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/prepare-for-docker-build-and-push/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ runs:
password: ${{ inputs.dockerhub_token }}

- name: Install Ubuntu dependencies
if: inputs.is_ingestion == 'true'
if: inputs.is_ingestion == true
shell: bash
run: |
sudo apt-get install -y python3-venv
- name: Install open-metadata dependencies
if: inputs.is_ingestion == 'true'
if: inputs.is_ingestion == true
shell: bash
run: |
python3 -m venv env
Expand All @@ -63,7 +63,7 @@ runs:
id: generate-tags
shell: bash
run: |
if ${{ inputs.push_latest == "true" }}; then
if ${{ inputs.push_latest == 'true' }}; then
echo "tags=${{ inputs.image }}:${{ inputs.tag }},${{ inputs.image }}:latest" >> $GITHUB_OUTPUT
else
echo "tags=${{ inputs.image }}:${{ inputs.tag }}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 0209364

Please sign in to comment.