File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -194,15 +194,18 @@ jobs:
194194 name_without_extras=$(echo $name | sed 's/\[.*\]//')
195195 if [ "$name_without_extras" != "langflow-base-nightly" ]; then
196196 echo "Name $name_without_extras does not match langflow-base-nightly. Exiting the workflow."
197+ echo "skipped=true" >> $GITHUB_OUTPUT
197198 exit 1
198199 fi
199200 if [ "$version" != "${{ inputs.nightly_tag_base }}" ]; then
200201 echo "Version $version does not match nightly tag ${{ inputs.nightly_tag_base }}. Exiting the workflow."
202+ echo "skipped=true" >> $GITHUB_OUTPUT
201203 exit 1
202204 fi
203205 # Strip the leading `v` from the version
204206 version=$(echo $version | sed 's/^v//')
205207 echo "version=$version" >> $GITHUB_OUTPUT
208+ echo "skipped=false" >> $GITHUB_OUTPUT
206209
207210 - name : Build Langflow Base for distribution
208211 run : |
You can’t perform that action at this time.
0 commit comments