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.
2 parents 0cbb66f + 4c79457 commit 70fca68Copy full SHA for 70fca68
.github/workflows/docs.yml
@@ -30,18 +30,11 @@ jobs:
30
chmod -c -R +r target/doc | while read line; do
31
echo "::warning title=Changed permissions on a file::$line"
32
done
33
- tar \
34
- --dereference --hard-dereference \
35
- --directory target/doc \
36
- -cvf "$RUNNER_TEMP/artifact.tar" \
37
- --exclude=.git \
38
- --exclude=.github \
39
- .
40
41
- name: Upload static files as artifact
42
- uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
+ uses: actions/upload-pages-artifact@v3
43
with:
44
- path:${{ runner.temp }}/artifact.tar
+ path: target/doc
45
46
# Deployment job
47
deploy:
@@ -53,7 +46,7 @@ jobs:
53
environment:
54
name: github-pages
55
48
url: ${{ steps.deployment.outputs.page_url }}
56
-
49
+
57
50
runs-on: ubuntu-latest
58
51
needs: build
59
52
steps:
0 commit comments