We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b2193 commit 06f81e4Copy full SHA for 06f81e4
.github/workflows/deploy.yml
@@ -15,8 +15,7 @@ jobs:
15
runs-on: ubuntu-latest
16
environment:
17
name: github-pages
18
- # url: ${{ steps.deployment.outputs.page_url }}
19
-
+
20
steps:
21
- uses: actions/checkout@v4
22
@@ -25,14 +24,21 @@ jobs:
25
24
26
- name: Prepare deployment
27
run: |
+ echo "Cleaning _site directory"
28
rm -rf ./_site
29
mkdir -p ./_site
30
+ echo "Copying src content to _site"
31
cp -r src/* ./_site/
32
+ echo "Files in _site:"
33
+ ls -R ./_site
34
35
+ - name: Disable Jekyll
36
+ run: touch ./_site/.nojekyll
37
38
- name: Upload artifact
39
uses: actions/upload-pages-artifact@v3
40
with:
41
path: '_site'
42
43
- name: Deploy
- uses: actions/deploy-pages@v4
44
+ uses: actions/deploy-pages@v4
0 commit comments