Skip to content

Commit 0f67dc2

Browse files
removed graph files for dbt run purposes
1 parent 90d23f5 commit 0f67dc2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tasks/dbt-apply/action.yml

+10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ inputs:
3232
runs:
3333
using: "composite"
3434
steps:
35+
- name: Clean target
36+
shell: pwsh
37+
run: |
38+
if(Test-Path -Path ".\target\partial_parse.msgpack" -PathType Leaf) {
39+
Remove-Item -Path ".\target\partial_parse.msgpack" -Force
40+
}
41+
if(Test-Path -Path ".\target\graph.gpickle" -PathType Leaf) {
42+
Remove-Item -Path ".\target\graph.gpickle" -Force
43+
}
44+
3545
- name: Run DBT without Unit-tets
3646
if: inputs.target != 'unit-test'
3747
shell: pwsh

0 commit comments

Comments
 (0)