We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ad8cef + 8fa5666 commit 7004333Copy full SHA for 7004333
.github/workflows/deploy_branches.yml
@@ -71,7 +71,7 @@ jobs:
71
run: if [ -d "${BRANCH_NAME}" ] ; then rm -rf "${BRANCH_NAME}" ; fi
72
working-directory: ./server
73
- name: Copy in the newly built source
74
- run: mkdir "./server/${BRANCH_NAME}" && cp -r "./source/_build/default/src/web/www"/* "./server/${BRANCH_NAME}"
+ run: mkdir -p "./server/${BRANCH_NAME}" && cp -r "./source/_build/default/src/web/www"/* "./server/${BRANCH_NAME}"
75
- name: Commit to the website aka deploy
76
run: |
77
git config user.name github-deploy-action
0 commit comments