Skip to content

Commit

Permalink
add directory if not there
Browse files Browse the repository at this point in the history
Signed-off-by: Cal <[email protected]>
  • Loading branch information
CallumWalley authored Oct 31, 2023
1 parent 97ef744 commit 469458b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/fetch_includes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
steps:
- name: "Set Up Env"
uses: actions/checkout@v3
- run: git config --global user.name "${GITHUB_ACTOR}"
- run: git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- run: git checkout -b ${BRANCH_NAME}
- run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git checkout -b ${BRANCH_NAME}
mkdir -pv docs/assets/glossary
- name: Fetch Module List
run: wget -O docs/assets/module-list.json ${MODULES_LIST_URL}
- name: Fetch Glossary
Expand Down

0 comments on commit 469458b

Please sign in to comment.