File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 53
53
jobs :
54
54
check-git :
55
55
runs-on : ubuntu-latest
56
- # This will block all other jobs from running due to "needs"
57
- if : |
58
- ${{ !inputs.skip_test || (
59
- github.repository == 'logicalclocks/rondb-docker' &&
60
- (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
61
- )}}
62
56
outputs :
63
57
is_highest_release : ${{ steps.is_highest_release.outputs.is_highest }}
64
58
steps :
@@ -77,12 +71,18 @@ jobs:
77
71
echo "Current branch is the highest release branch."
78
72
echo "is_highest=true" >> $GITHUB_ENV
79
73
else
74
+ echo "Current branch is not the highest release branch."
80
75
echo "is_highest=false" >> $GITHUB_ENV
81
76
fi
82
77
83
78
build-test-push-x86 :
84
79
runs-on : ubuntu-latest
85
80
needs : [check-git]
81
+ if : |
82
+ ${{ !inputs.skip_test || (
83
+ github.repository == 'logicalclocks/rondb-docker' &&
84
+ (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
85
+ )}}
86
86
steps :
87
87
- uses : actions/checkout@v4
88
88
You can’t perform that action at this time.
0 commit comments