We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c039634 commit cecb125Copy full SHA for cecb125
.github/workflows/deploy.yml
@@ -33,12 +33,14 @@ jobs:
33
- name: Prepare deployment directory (exclude versions/)
34
run: |
35
mkdir deploy
36
- rsync -av . ./deploy \
37
- --exclude '**/versions' \
38
- --exclude '**/versions/**' \
39
- --exclude '.git' \
40
- --exclude '.github' \
41
- --exclude '.gitignore'
+ rsync -av \
+ --exclude=versions \
+ --exclude=.github \
+ --exclude=.git \
+ --exclude=.gitignore \
+ --exclude=README.md \
42
+ --exclude=deploy.json \
43
+ ./ ./deploy/
44
45
- name: Upload artifact
46
uses: actions/upload-pages-artifact@v3
0 commit comments