We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8a9be7 commit 596b9f7Copy full SHA for 596b9f7
1 file changed
.github/workflows/common_end.yml
@@ -19,7 +19,12 @@ jobs:
19
with:
20
run-id: ${{ github.event.workflow_run.id }}
21
- name: "Copy Markdown File Back Into Workspace"
22
- run: cp -rf ./SASVIEW_publications.md ./publications.md
+ run: |
23
+ mv -rf ./SASVIEW_publications.md ./publications.md
24
+ file = 'SasView_linktitle.csl'
25
+ if [ -f "$file" ] ; then
26
+ rm "$file"
27
+ fi
28
- name: "Commit And Push Any Changes to Github"
29
run: |
30
if [[ -n $(git status --porcelain) ]]; then
0 commit comments