Skip to content

Commit

Permalink
🔥 Remove skipping of errors now that only master branch deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
segersniels committed May 27, 2019
1 parent 46416f7 commit e611d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
wget https://github.com/tcnksm/ghr/releases/download/v0.12.1/ghr_v0.12.1_linux_amd64.tar.gz
tar -xzvf ghr_v0.12.1_linux_amd64.tar.gz
VERSION=$(./bin/index-linux --version)
./ghr_v0.12.1_linux_amd64/ghr -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${VERSION} bin/ || true
./ghr_v0.12.1_linux_amd64/ghr -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${VERSION} bin/
- run:
name: 'NPM release'
command: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/supdock/dist/.npmrc
cp README.md dist/README.md ; cd dist ; npm publish || true
cp README.md dist/README.md ; cd dist ; npm publish
workflows:
version: 2
Expand Down

0 comments on commit e611d32

Please sign in to comment.