We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1296322 commit 7ce5139Copy full SHA for 7ce5139
.github/workflows/workflow.yaml
@@ -18,9 +18,14 @@ jobs:
18
git config --global user.name "Matheus Ribeiro"
19
git config --global user.email "[email protected]"
20
21
+ - name: Fix paths for GitHub Pages
22
+ run: |
23
+ find . -type f -name "*.html" -exec sed -i 's|src="lib/|src="/facial-recognition/lib/|g' {} +
24
+ find . -type f -name "*.js" -exec sed -i 's|src="lib/|src="/facial-recognition/lib/|g' {} +
25
+
26
- name: Deploy to GitHub Pages
27
uses: peaceiris/actions-gh-pages@v3
28
with:
29
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./
- nojekyll: true
30
+ publish_dir: ./
31
+ nojekyll: true
0 commit comments