Skip to content

Commit

Permalink
ci: fail build if no artifacts uploaded (#2566)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasvh authored Jul 11, 2021
1 parent 85f79c1 commit e7a021a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,19 @@ jobs:
with:
name: npm
path: html2canvas.tgz
if-no-files-found: error
- name: Upload dist
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
if-no-files-found: error
- name: Upload build
uses: actions/upload-artifact@v2
with:
name: build
path: build
if-no-files-found: error

test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -170,6 +173,7 @@ jobs:
with:
name: reftest-results
path: tmp/reftests
if-no-files-found: error
publish:
runs-on: ubuntu-latest
name: Publish
Expand Down Expand Up @@ -282,6 +286,7 @@ jobs:
with:
name: docs
path: www/public
if-no-files-found: error
publish-docs:
runs-on: ubuntu-latest
name: Publish Docs
Expand Down

0 comments on commit e7a021a

Please sign in to comment.