Skip to content

Commit

Permalink
chore: Don't upload artifacts on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Oct 21, 2020
1 parent d763506 commit 6a33e53
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/alpine.yml
Expand Up @@ -40,6 +40,7 @@ jobs:
run: npm test

- uses: actions/upload-artifact@v2
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
with:
name: ${{ matrix.node }}
path: vendor/
1 change: 1 addition & 0 deletions .github/workflows/linux.yml
Expand Up @@ -54,6 +54,7 @@ jobs:
run: npm test

- uses: actions/upload-artifact@v2
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
with:
name: ${{ matrix.node }}
path: vendor/
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Expand Up @@ -35,6 +35,7 @@ jobs:
run: npm test

- uses: actions/upload-artifact@v2
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
with:
name: ${{ matrix.node }}
path: vendor/
1 change: 1 addition & 0 deletions .github/workflows/windows.yml
Expand Up @@ -35,6 +35,7 @@ jobs:
run: npm test

- uses: actions/upload-artifact@v2
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
with:
name: ${{ matrix.node }}
path: |
Expand Down

0 comments on commit 6a33e53

Please sign in to comment.