Skip to content

Commit 0c5f4b1

Browse files
authored
try: exclude github dir from uploading (#232)
1 parent bc5de5f commit 0c5f4b1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/npm-publish-pro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Publish to CDN
2929
uses: jakejarvis/s3-sync-action@master
3030
with:
31-
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*'
31+
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*' --exclude 'github/*'
3232
env:
3333
AWS_S3_BUCKET: 'unicons-iconscout-a5996f0'
3434
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

.github/workflows/npm-publish-rc-pro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Publish to CDN
3030
uses: jakejarvis/s3-sync-action@master
3131
with:
32-
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*'
32+
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*' --exclude 'github/*'
3333
env:
3434
AWS_S3_BUCKET: 'unicons-iconscout-a5996f0'
3535
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

.github/workflows/npm-publish-rc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Publish to CDN
4040
uses: jakejarvis/s3-sync-action@master
4141
with:
42-
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*'
42+
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*' --exclude 'github/*'
4343
env:
4444
AWS_S3_BUCKET: 'unicons-iconscout-a5996f0'
4545
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Publish to CDN
2929
uses: jakejarvis/s3-sync-action@master
3030
with:
31-
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*'
31+
args: --no-progress --exclude '.git/*' --exclude 'node_modules/*' --exclude 'build/*' --exclude '.github/*' --exclude 'github/*'
3232
env:
3333
AWS_S3_BUCKET: 'unicons-iconscout-a5996f0'
3434
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

0 commit comments

Comments
 (0)