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 b6c6b6d commit e4b8a2eCopy full SHA for e4b8a2e
1 file changed
.github/workflows/docs.yml
@@ -43,10 +43,22 @@ jobs:
43
44
- uses: actions/configure-pages@v5
45
46
- - uses: actions/upload-pages-artifact@v4
+ - name: Create Pages artifact
47
+ run: |
48
+ tar \
49
+ --dereference --hard-dereference \
50
+ --directory site/build \
51
+ -cvf "$RUNNER_TEMP/artifact.tar" \
52
+ --exclude=.git \
53
+ --exclude=.github \
54
+ .
55
+
56
+ - uses: actions/upload-artifact@v4
57
with:
- path: site/build
- include-hidden-files: true
58
+ name: github-pages
59
+ path: ${{ runner.temp }}/artifact.tar
60
+ if-no-files-found: error
61
+ retention-days: 1
62
63
- name: Deploy to GitHub Pages
64
id: deployment
0 commit comments