Skip to content

Commit

Permalink
misc(build): don't let buildtracker fail the build (#10718)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored May 7, 2020
1 parent ffd4a02 commit 30b5d8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ jobs:
- name: Deepen git fetch (for buildtracker)
run: git fetch --deepen=100
- name: Store in buildtracker
run: yarn bt-cli upload-build
# TODO(paulirish): Don't allow this to fail the build. https://github.com/paularmstrong/build-tracker/issues/200
run: yarn bt-cli upload-build || true
env:
# https://buildtracker.dev/docs/guides/github-actions#configuration
BT_API_AUTH_TOKEN: ${{ secrets.BT_API_AUTH_TOKEN }}
Expand Down

0 comments on commit 30b5d8f

Please sign in to comment.