File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,18 @@ jobs:
123123 bundle exec rake db:create
124124 bundle exec rake db:migrate
125125 - name : Run rake ${{ matrix.task }}
126- run : bundle exec rake ${{ matrix.task }}
126+ run : ${{ contains(matrix.task, 'integration') && 'APIPIE_RECORD=examples' || '' }} bundle exec rake ${{ matrix.task }}
127+ - name : Build apidoc
128+ run : bundle exec rake apipie:cache
129+ if : contains(matrix.task, 'integration')
130+ env :
131+ FOREMAN_APIPIE_LANGS : en
132+ - name : Archive apidoc
133+ uses : actions/upload-artifact@v4
134+ if : contains(matrix.task, 'integration')
135+ with :
136+ name : apidoc-${{ env.ARTIFACT_SUFFIX }}
137+ path : public/apipie-cache/apidoc/
127138 - name : Archive all_react_app_exports
128139 if : contains(matrix.task, 'compile')
129140 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments