diff --git a/.buildkite/deploy.sh b/.buildkite/deploy.sh index 535513cd..6f059f13 100755 --- a/.buildkite/deploy.sh +++ b/.buildkite/deploy.sh @@ -6,13 +6,13 @@ TAG_VERSION=$(buildkite-agent meta-data get "tag-version" --default "0.0.0-alpha TAG_VERSION=${TAG_VERSION/v/} # Publish the package -sed -i "s/0.0.0-ci-released/$TAG_VERSION/g" package.json -npm publish --tag ${NPM_TAG} +npm version ${TAG_VERSION} +npm publish --tag ${TAG_VERSION} # Annotate the build with the types version buildkite-agent annotate --style success "Published to \`@widen/react-modal@${TAG_VERSION}\`. Install with the following command: \`\`\`bash -yarn add @widen/react-modal@${TAG_VERSION} +yarn add @widen/react-modal \`\`\` " diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 77e03f1c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: node_js -node_js: - - "8" -cache: yarn -services: - - xvfb -before_script: - - export DISPLAY=:99.0 -script: - - make tests-ci