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 0cdbfe0 commit e6f14b9Copy full SHA for e6f14b9
.github/workflows/deploy.yml
@@ -12,7 +12,7 @@ permissions:
12
13
concurrency:
14
group: "pages"
15
- cancel-in-progress: false
+ cancel-in-progress: true
16
17
defaults:
18
run:
@@ -32,6 +32,13 @@ jobs:
32
id: pages
33
uses: actions/configure-pages@v4
34
35
+ - name: Clean previous artifacts
36
+ run: |
37
+ # Clean any previous artifacts to avoid conflicts
38
+ rm -rf public/
39
+ rm -f hugo_stats.json
40
+ rm -f .hugo_build.lock
41
+
42
- name: Setup Hugo
43
uses: peaceiris/actions-hugo@v2
44
with:
@@ -52,6 +59,7 @@ jobs:
52
59
uses: actions/upload-pages-artifact@v3
53
60
54
61
path: ./public
62
+ name: hugo-site
55
63
56
64
deploy:
57
65
environment:
0 commit comments