We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9348c22 commit e8fa6eaCopy full SHA for e8fa6ea
1 file changed
.github/workflows/aws-s3-sync.yml
@@ -41,4 +41,9 @@ jobs:
41
- name: Sync directory to S3
42
run: |
43
DEST="s3://${{ secrets.bucket_name }}/${{ inputs.bucket_prefix }}"
44
- aws s3 sync "${{ inputs.source_dir }}" "$DEST" --delete
+ aws s3 sync "${{ inputs.source_dir }}" "$DEST" \
45
+ --delete \
46
+ --exclude ".git/*" \
47
+ --exclude ".github/*" \
48
+ --exclude ".gitignore" \
49
+ --exclude ".gitattributes"
0 commit comments