We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58f3fb0 commit bfb0d72Copy full SHA for bfb0d72
1 file changed
.github/workflows/main.yml
@@ -80,11 +80,8 @@ jobs:
80
81
- name: Deploy to gh-pages branch
82
run: |
83
- tree
84
-
85
find neoteroi -mindepth 1 ! -name '.git' ! -name 'CNAME' ! -name 'README.md' ! -path 'neoteroi/.git/*' -exec rm -rf {} +
86
- cp -r site/* neoteroi/
87
- rm -rf site
+ cp -r site/site/* neoteroi/
88
89
cd neoteroi
90
git config user.name "${GITHUB_ACTOR}"
@@ -93,7 +90,7 @@ jobs:
93
git add .
94
91
git commit -m "Deploy documentation on $(date -u '+%Y-%m-%d %H:%M:%S UTC')"
95
92
96
- git checkout -b test
97
- git push origin test --force
+ git checkout -b test # TODO: remove
+ git push origin test
98
99
echo "Published to test"
0 commit comments