We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9400091 commit 79e41e0Copy full SHA for 79e41e0
.github/workflows/main.yml
@@ -16,6 +16,11 @@ jobs:
16
outputs:
17
needs_build: ${{ steps.filter.outputs.needs_build }}
18
steps:
19
+ - name: cleanup work folder
20
+ run: |
21
+ if [ -n "${GITHUB_WORKSPACE}" ]; then
22
+ rm -rf ${GITHUB_WORKSPACE}/*
23
+ fi
24
- uses: actions/checkout@v4
25
with:
26
fetch-depth: 25
@@ -42,11 +47,6 @@ jobs:
42
47
NODE_ENV: development
43
48
44
49
45
- - name: cleanup work folder
46
- run: |
- if [ -n "${GITHUB_WORKSPACE}" ]; then
- rm -rf ${GITHUB_WORKSPACE}/*
- fi
50
51
52
0 commit comments