File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 22
22
needs_build : ${{ steps.check_manual_run.outputs.needs_build || steps.check_tags.outputs.needs_build }}
23
23
24
24
steps :
25
-
26
25
- name : Check if workflow was manually triggered
27
26
id : check_manual_run
28
27
run : |
@@ -35,15 +34,15 @@ jobs:
35
34
fi
36
35
37
36
- name : Checkout code
38
- if : ${{ ! steps.check_manual_run.outputs.needs_build }}
37
+ if : ${{ steps.check_manual_run.outputs.needs_build == 'false' }}
39
38
uses : actions/checkout@v3
40
39
41
40
- name : fetch tags
42
- if : ${{ ! steps.check_manual_run.outputs.needs_build }}
41
+ if : ${{ steps.check_manual_run.outputs.needs_build == 'false' }}
43
42
run : git fetch --tags origin
44
43
45
44
- name : Check if tags point to the same commit or if the workflow was manually triggered
46
- if : ${{ ! steps.check_manual_run.outputs.needs_build }}
45
+ if : ${{ steps.check_manual_run.outputs.needs_build == 'false' }}
47
46
id : check_tags
48
47
run : |
49
48
curr_sha=$(git rev-parse HEAD)
59
58
echo "Changes since last nightly release detected. Continuing..."
60
59
echo "needs_build=true" >> $GITHUB_OUTPUT;
61
60
fi
62
-
63
61
64
62
build-meson-releases :
65
63
name : Linux & macOS Release Builds
You can’t perform that action at this time.
0 commit comments