We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7e9fec + 3f260b7 commit cbab3cbCopy full SHA for cbab3cb
1 file changed
action.yml
@@ -87,9 +87,16 @@ runs:
87
echo "::set-output name=compare_state::compatible"
88
fi
89
shell: bash
90
+ - name: "Check file existence"
91
+ id: check_files
92
+ uses: andstor/file-existence-action@v1
93
+ with:
94
+ files: ".tmp"
95
- name: "Post: Change folder own group"
96
+ if: steps.check_files.outputs.files_exists == 'true'
97
run: sudo chown -R $USER:$USER .tmp
98
99
- name: "Post: Remove .tmp directory"
100
101
run: rm -fr .tmp
102
0 commit comments