mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 13:42:30 -05:00
Configure .travis.yml to publish l10n (#3)
Add .travis.yml, configured to use travis build stages. Releases should only happen if the branch is one listed in RELEASE_BRANCHES (set up in travis env variable)
This commit is contained in:
parent
4a9cdc7f4a
commit
39de2e5a0d
1 changed files with 23 additions and 0 deletions
23
.travis.yml
Normal file
23
.travis.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- 6
|
||||||
|
- node
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- node_modules
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- stage: npm release
|
||||||
|
if: branch IN (env(RELEASE_BRANCHES))
|
||||||
|
node_js: 6
|
||||||
|
script: npm run build
|
||||||
|
before_deploy:
|
||||||
|
- npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%s)
|
||||||
|
- git config --global user.email $(git log --pretty=format:"%ae" -n1)
|
||||||
|
- git config --global user.name $(git log --pretty=format:"%an" -n1)
|
||||||
|
deploy:
|
||||||
|
provider: npm
|
||||||
|
skip_cleanup: true
|
||||||
|
email: $NPM_EMAIL
|
||||||
|
api_key: $NPM_TOKEN
|
||||||
|
|
Loading…
Reference in a new issue