Skip to content

Commit 443f478

Browse files
author
Dorazil
committed
DEBUG INIT4
1 parent 6563b4f commit 443f478

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ jobs:
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:

build.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -254,18 +254,6 @@
254254

255255
<target name="app-init">
256256

257-
<!-- Show last Git commit -->
258-
<exec command="git log -10 --pretty=format:'Description of the last commit:%s%n'" passthru="true" checkreturn="true" />
259-
260-
<!-- Show current branch name -->
261-
<exec command="git rev-parse --abbrev-ref HEAD"
262-
passthru="true"
263-
checkreturn="true" />
264-
265-
266-
<!-- List contents of the migrations directory -->
267-
<exec command="ls -la migrations" passthru="true" checkreturn="true"/>
268-
269257
<copy file="app/config/config.sample.local.neon" tofile="app/config/config.local.neon"/>
270258

271259
<exec command="bin/console nette:cache:purge" passthru="true" checkreturn="false"/>

0 commit comments

Comments
 (0)