Skip to content

Commit

Permalink
added little verbosity to conda-build workflow 📍
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas.gehrig committed Dec 5, 2023
1 parent 28ec691 commit c605366
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ jobs:
DEV_STR="dev"
if [[ ${{ github.event_name }} == "release" ]]
then
echo "Conda build from release"
build="0"
KARABO_TAG=${{ steps.get-latest-tag.outputs.tag }}
BUILD_DOCKER=true
LATEST_DOCKER=true
elif [[ ${{ github.event_name }} == "workflow_dispatch" ]] || [[ ${{ github.event_name }} == "workflow_call" ]]
then
elif [[ ${{ github.event_name }} == "workflow_dispatch" ]] || [[ ${{ github.event_name }} == "workflow_call" ]]; then
echo "Conda build from dispatch | call"
build=${{ inputs.buildNumber }}
BUILD_DOCKER=${{ inputs.buildDocker }}
LATEST_DOCKER=${{ inputs.latestDocker }}
Expand Down

0 comments on commit c605366

Please sign in to comment.