We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f67dc2 commit deccea2Copy full SHA for deccea2
tasks/dbt-apply/action.yml
@@ -35,12 +35,13 @@ runs:
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
+ if(Test-Path -Path "partial_parse.msgpack") {
+ Remove-Item -Path "partial_parse.msgpack" -Force
40
}
41
- if(Test-Path -Path ".\target\graph.gpickle" -PathType Leaf) {
42
- Remove-Item -Path ".\target\graph.gpickle" -Force
+ if(Test-Path -Path "graph.gpickle") {
+ Remove-Item -Path "graph.gpickle" -Force
43
44
+ working-directory: ${{ inputs.working-directory }}/target
45
46
- name: Run DBT without Unit-tets
47
if: inputs.target != 'unit-test'
0 commit comments