Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 6a33e53

Browse files
committed
chore: Don't upload artifacts on PRs
1 parent d763506 commit 6a33e53

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/alpine.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
run: npm test
4141

4242
- uses: actions/upload-artifact@v2
43+
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
4344
with:
4445
name: ${{ matrix.node }}
4546
path: vendor/

.github/workflows/linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
run: npm test
5555

5656
- uses: actions/upload-artifact@v2
57+
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
5758
with:
5859
name: ${{ matrix.node }}
5960
path: vendor/

.github/workflows/macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
run: npm test
3636

3737
- uses: actions/upload-artifact@v2
38+
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
3839
with:
3940
name: ${{ matrix.node }}
4041
path: vendor/

.github/workflows/windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
run: npm test
3636

3737
- uses: actions/upload-artifact@v2
38+
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
3839
with:
3940
name: ${{ matrix.node }}
4041
path: |

0 commit comments

Comments
 (0)