File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 9595 runs-on : self-hosted
9696 needs : workdir
9797 steps :
98+ - name : Clean workspace
99+ shell : bash
100+ run : |
101+ shopt -s dotglob
102+ rm -rf -- * || true
103+ shopt -u dotglob
98104 - name : Download workdir
99105 uses : actions/download-artifact@v4
100106 with :
Original file line number Diff line number Diff line change 253253 </target >
254254
255255 <target name =" app-init" >
256- <!-- Create config.local.neon -->
256+
257257 <copy file =" app/config/config.sample.local.neon" tofile =" app/config/config.local.neon" />
258258
259+ <exec command =" bin/console nette:cache:purge" passthru =" true" checkreturn =" false" />
259260 <!-- Install dependencies -->
260261 <exec command =" composer install" passthru =" true" checkreturn =" true" />
261262 <exec command =" yarn install" passthru =" true" checkreturn =" true" />
264265 <exec command =" yarn build" passthru =" true" checkreturn =" true" />
265266
266267 <!-- Prepare database schema -->
268+ <exec command =" bin/console migrations:drop-all-tables-views --no-interaction" passthru =" true" checkreturn =" true" />
267269 <exec command =" bin/console migrations:migrate --no-interaction" passthru =" true" checkreturn =" true" />
268270 </target >
269271</project >
You can’t perform that action at this time.
0 commit comments