Skip to content

Commit

Permalink
Clean up examples first and move new in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi committed Nov 21, 2023
1 parent c7429be commit 673eb01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ansys_lab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ jobs:
os.mkdir(os.path.join(os.getcwd(), "examples"))
print(os.listdir(os.getcwd()))
for example in glob.iglob('*.ipynb'):
shutil.move(example, os.path.join(os.getcwd(), "examples"))
print(f"Moving {example}")
shutil.move(example, os.path.join(os.getcwd(), "examples"))
print(os.listdir(os.path.join(os.getcwd(), "examples")))
- name: "Push changes"
Expand Down

0 comments on commit 673eb01

Please sign in to comment.