We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cecb125 commit 029f14cCopy full SHA for 029f14c
1 file changed
.github/workflows/deploy.yml
@@ -32,20 +32,21 @@ jobs:
32
33
- name: Prepare deployment directory (exclude versions/)
34
run: |
35
- mkdir deploy
+ mkdir -p /tmp/deploy
36
rsync -av \
37
- --exclude=versions \
38
- --exclude=.github \
39
- --exclude=.git \
40
- --exclude=.gitignore \
41
- --exclude=README.md \
42
- --exclude=deploy.json \
43
- ./ ./deploy/
+ --exclude '**/versions' \
+ --exclude '**/versions/**' \
+ --exclude '.git' \
+ --exclude '.github' \
+ --exclude '.gitignore' \
+ --exclude 'README.md' \
+ --exclude 'deploy.json' \
44
+ ./ /tmp/deploy/
45
46
- name: Upload artifact
47
uses: actions/upload-pages-artifact@v3
48
with:
- path: './deploy'
49
+ path: /tmp/deploy
50
51
- name: Deploy to GitHub Pages
52
id: deployment
0 commit comments