Skip to content

Commit

Permalink
some test
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Korolev <[email protected]>
  • Loading branch information
universal-itengineer committed Nov 27, 2024
1 parent 414e587 commit 4f71d2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dev_module_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,11 @@ jobs:
echo "-----"
echo "${{steps.get-labels.outputs.result}} -steps.get-labels.outputs "
echo "$labels -labels"
echo "--"
echo "${{ steps.get-labels.outputs.result }}" | grep -q "edition/ce"
echo "-----"
if [[ "$labels" == *"edition/ce"* ]]; then
if echo "${{ steps.get-labels.outputs.result }}" | grep -q "edition/ce"; then
echo "MODULE_EDITION=CE" >> $GITHUB_OUTPUT
else
echo "MODULE_EDITION=EE" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 4f71d2e

Please sign in to comment.