We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d60694f commit 1130144Copy full SHA for 1130144
1 file changed
.github/workflows/deploy.yml
@@ -14,7 +14,8 @@ jobs:
14
- name: Copy website
15
run: |
16
mkdir dist
17
- cp *.html *.css *.js ./dist
+ files=$(git ls-files | grep -E '\.(html|css|js)$')
18
+ cp --parents $files ./dist
19
- name: Deploy website
20
21
aws configure set default.s3.addressing_style path
0 commit comments