From 1b78f39f9f09edae46c6a38ea09f3c57f45c78f0 Mon Sep 17 00:00:00 2001 From: Santiago Bernhardt Date: Mon, 10 Apr 2023 14:48:14 +1200 Subject: [PATCH] Comment on test for verify bump none --- .github/workflows/test.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 088716b9..8ab566fd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -164,12 +164,10 @@ jobs: # needs to be a greater tag in bump major main2="$(verlt $MAIN2_OUTPUT_TAG $MAIN2_OUTPUT_NEWTAG && true || false)" pre2="$(verlt $PRE2_OUTPUT_TAG $PRE2_OUTPUT_NEWTAG && true || false)" - # needs to be the same tag when bump is none - main3="$(verlt $MAIN3_OUTPUT_TAG $MAIN3_OUTPUT_NEWTAG && false || true)" - # needs to be the same tag when bump is none - main4="$(verlt $MAIN4_OUTPUT_TAG $MAIN4_OUTPUT_NEWTAG && false || true)" - if $main1 && $pre1 && $main2 && $pre2 && $main3 && main4 + # TODO figure out a not very ugly way to verify bump none output of .new_tag + + if $main1 && $pre1 && $main2 && $pre2 then echo -e "\n>>>>The tags were created correctly" >> $GITHUB_STEP_SUMMARY else