mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:21:07 +08:00
Merge pull request #4040 from storybooks/pksunkara/travis
Removed obsolete travis references
This commit is contained in:
commit
494bda57c3
@ -1,21 +0,0 @@
|
||||
language: node_js
|
||||
branches:
|
||||
except:
|
||||
- master
|
||||
cache:
|
||||
directories:
|
||||
- node_modules
|
||||
- ".cache"
|
||||
notifications:
|
||||
email: false
|
||||
node_js:
|
||||
- node
|
||||
before_install: "./scripts/travis/before_install.sh"
|
||||
after_success: "./scripts/travis/after_success.sh"
|
||||
script:
|
||||
- npm run lint
|
||||
git:
|
||||
depth: 1
|
||||
env:
|
||||
global:
|
||||
- secure: yNNjO4HvIcBH2r+EpWr29TQZzUJoQCC7MlxDtWW5XCsiL7lwnAxRk9DJ1edjYyd2lt4UWVyiQYD7708YMq7sR9TQWN195kcVnd1k5JzNBvePK9VjrmX2e2gRsbSQmWYQXFuUvbEbBmZUPhWbgaTzDzSdzsoFpTqJg3Q328S2GleixtPLBly5SC59Zar9tGw7OyVmPRN9GdKbVQfPQcmHDY+fHKzAqBaenlL/dC6UR9N+w5oWr3KFH/smrVzbDEonoKaZqvj02LnHVctGL6XCopoNbm7ldf/A6qKS/9D/MrLiLP3O3umCPhnGH8L8bNw7I6pdIKbroISUd+v5FqoCLN1iLO5wDY73gKUdwYUAt37KEhFUJPDwr/YYxRP0fZHIF0lI44w0RgN7N27ISwu9dw6Zq6a28+UcBRyemsvfXodBO9jiAW8R0pQhqWZ9yc2vZfFVfRh5SbHBLqIc0uHcqAtnkx8XU72bDDbqmA0dCA+LwAPX3doaaP37C5BzO+khGODpG+4R0nSsuTdPB6+jbBuS84V9YUAAl95hhMlYA9hvI3GdDjPkahuaYdUrYmqSh3v2XIhEA+D6BjXaGLYwcFpZzLB8pzZbRZVR4RdmuGF1J+ozxZNiKPPqcmK7XFlGWJ2b2+fFw3ZuHU6grDdCe1zpLYzrx1Om6QBUir83oGM=
|
@ -9,7 +9,7 @@
|
||||
"license": "MIT",
|
||||
"main": "n/a",
|
||||
"scripts": {
|
||||
"build": "gatsby build && cp static/**/* .travis.yml ./public",
|
||||
"build": "gatsby build && cp static/**/* ./public",
|
||||
"build-storybook": "build-storybook",
|
||||
"deploy:ci": "gh-pages -t -r https://${GH_TOKEN}@github.com/storybooks/storybook.git -d public -o origin -b gh-pages",
|
||||
"deploy:manual": "gh-pages -t -r git@github.com:storybooks/storybook.git -d public -o origin -b gh-pages",
|
||||
|
@ -1,14 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||
echo "We are in a pull request, not releasing"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $TRAVIS_BRANCH == 'source' ]]; then
|
||||
npm run build
|
||||
git config --global user.email "nobody@nobody.org"
|
||||
git config --global user.name "Travis CI"
|
||||
npm run deploy-travis
|
||||
fi
|
@ -1,38 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
# Note: do not do set -x or the passwords will leak!
|
||||
|
||||
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||
echo "We are in a pull request, not setting up release"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $TRAVIS_BRANCH == 'master' ]]; then
|
||||
# rm -rf .git
|
||||
# git init
|
||||
# git clean -dfx
|
||||
# git remote add origin https://github.com/atlassian/lerna-semantic-release.git
|
||||
# git fetch origin
|
||||
# git clone https://github.com/$TRAVIS_REPO_SLUG.git $TRAVIS_REPO_SLUG
|
||||
# git checkout $TRAVIS_BRANCH
|
||||
#
|
||||
# git config credential.helper store
|
||||
# echo "https://${RELEASE_GH_USERNAME}:${RELEASE_GH_TOKEN}@github.com/atlassian/lerna-semantic-release.git" > ~/.git-credentials
|
||||
#
|
||||
# npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN -q
|
||||
# npm prune
|
||||
#
|
||||
# git config --global user.email "design-platform@atlassian.com"
|
||||
# git config --global user.name "Design Platform"
|
||||
# git config --global push.default simple
|
||||
#
|
||||
# git fetch --tags
|
||||
# git branch -u origin/$TRAVIS_BRANCH
|
||||
# git fsck --full #debug
|
||||
# echo "npm whoami"
|
||||
# npm whoami #debug
|
||||
# echo "git config --list"
|
||||
# git config --list #debug
|
||||
echo "We are on master"
|
||||
exit 0
|
||||
fi
|
@ -1,17 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then
|
||||
echo "We are in a pull request, not releasing"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $TRAVIS_BRANCH == 'master' ]]; then
|
||||
# setup git user
|
||||
git config --global user.email "nobody@nobody.org"
|
||||
git config --global user.name "Travis CI"
|
||||
|
||||
# deploy documentation to github-pages
|
||||
npm run docs:build
|
||||
npm run docs:deploy:ci
|
||||
fi
|
@ -1,38 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
# Note: do not do set -x or the passwords will leak!
|
||||
|
||||
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||
echo "We are in a pull request, not setting up release"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ $TRAVIS_BRANCH == 'master' ]]; then
|
||||
# rm -rf .git
|
||||
# git init
|
||||
# git clean -dfx
|
||||
# git remote add origin https://github.com/atlassian/lerna-semantic-release.git
|
||||
# git fetch origin
|
||||
# git clone https://github.com/$TRAVIS_REPO_SLUG.git $TRAVIS_REPO_SLUG
|
||||
# git checkout $TRAVIS_BRANCH
|
||||
#
|
||||
# git config credential.helper store
|
||||
# echo "https://${RELEASE_GH_USERNAME}:${RELEASE_GH_TOKEN}@github.com/atlassian/lerna-semantic-release.git" > ~/.git-credentials
|
||||
#
|
||||
# npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN -q
|
||||
# npm prune
|
||||
#
|
||||
# git config --global user.email "design-platform@atlassian.com"
|
||||
# git config --global user.name "Design Platform"
|
||||
# git config --global push.default simple
|
||||
#
|
||||
# git fetch --tags
|
||||
# git branch -u origin/$TRAVIS_BRANCH
|
||||
# git fsck --full #debug
|
||||
# echo "npm whoami"
|
||||
# npm whoami #debug
|
||||
# echo "git config --list"
|
||||
# git config --list #debug
|
||||
echo "We are on master"
|
||||
exit 0
|
||||
fi
|
Loading…
x
Reference in New Issue
Block a user