Skip to content

Commit ac58165

Browse files
committed
Workflow Directory Creation
Creation of Directory due to recent failures. Possible change in gitactions causing this in latest versions. Signed-off-by: Harvey Lynden <[email protected]>
1 parent fedb9e7 commit ac58165

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/jekyll-gh-pages-avatar.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,10 @@ jobs:
4141
- name: List files in autils directory
4242
run: ls -R resources/autils/metadata/
4343

44-
- name: Copy autils metadata to _data dir
45-
run: cp -r resources/autils/metadata/* main/_data/autils/
46-
47-
- name: Copy YAML files from autils
48-
run: cp -r resources/autils/metadata/**/*.yml main/_data/autils/
44+
- name: Create data directory and copy autils metadata
45+
run: |
46+
mkdir -p main/_data/autils/
47+
cp -r resources/autils/metadata/* main/_data/autils/
4948
5049
- name: Set up Python
5150
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)