File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 3131 uses : ./go/actions/test
3232 with :
3333 run-code-checks : true
34-
35- qhelp :
36- name : Test qhelp conversion
37- runs-on : ubuntu-latest
38- steps :
39- - name : Compile qhelp files to markdown
40- shell : bash
41- run : |
42- cd go
43- env QHELP_OUT_DIR=qhelp-out make qhelp-to-markdown
44- - name : Upload qhelp markdown
45- uses : actions/upload-artifact@v3
46- with :
47- name : qhelp-markdown
48- path : go/qhelp-out/**/*.md
Original file line number Diff line number Diff line change 4949 cd go
5050 make check-formatting
5151
52+ - name : Compile qhelp files to markdown
53+ if : inputs.run-code-checks == 'true' && !cancelled()
54+ id : markdown
55+ shell : bash
56+ run : |
57+ cd go
58+ env QHELP_OUT_DIR=qhelp-out make qhelp-to-markdown
59+
60+ - name : Upload qhelp markdown
61+ if : inputs.run-code-checks == 'true' && !cancelled()
62+ uses : actions/upload-artifact@v3
63+ with :
64+ name : qhelp-markdown
65+ path : go/qhelp-out/**/*.md
66+
5267 - name : Cache compilation cache
5368 id : query-cache
5469 uses : ./.github/actions/cache-query-compilation
You can’t perform that action at this time.
0 commit comments