We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee7cdef commit 51adef2Copy full SHA for 51adef2
.github/workflows/deploy.yml
@@ -60,8 +60,9 @@ jobs:
60
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
61
run: |
62
cd "${DEPLOY_DIR}"
63
+ touch .nojekyll
64
git config user.name "${GITHUB_ACTOR}" && \
65
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" && \
- git add . && \
66
+ git add -f . && \
67
git commit --allow-empty -m "Build commit ${GITHUB_SHA}" && \
68
git push "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" "HEAD:${DEPLOY_BRANCH}"
0 commit comments