We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeabc31 commit 2168a2aCopy full SHA for 2168a2a
1 file changed
.github/workflows/pages.yml
@@ -12,6 +12,9 @@ permissions:
12
pages: write
13
id-token: write
14
15
+env:
16
+ PAGES_ARTIFACT_NAME: github-pages-${{ github.run_id }}-${{ github.run_attempt }}
17
+
18
concurrency:
19
group: pages
20
cancel-in-progress: false
@@ -46,6 +49,7 @@ jobs:
46
49
- name: Upload artifact
47
50
uses: actions/upload-pages-artifact@v3
48
51
with:
52
+ name: ${{ env.PAGES_ARTIFACT_NAME }}
53
path: out
54
55
deploy:
@@ -58,3 +62,5 @@ jobs:
58
62
- name: Deploy
59
63
id: deployment
60
64
uses: actions/deploy-pages@v4
65
+ with:
66
+ artifact_name: ${{ env.PAGES_ARTIFACT_NAME }}
0 commit comments