mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-22 17:58:05 +00:00
* ci: name builds, split build scripts * ci: try out separate build and CDN release jobs * Release (but not really) * ci: use separate build and CDN release jobs * ci: can we put deploy config under a `jobs` key? * ci: test if deploys work * ci: revert deploy no-oping, activate deploys on `master` branch
11 lines
256 B
Bash
Executable file
11 lines
256 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o pipefail
|
|
set -o errexit
|
|
set -o nounset
|
|
# set -o xtrace
|
|
|
|
git config --global user.name 'Uppy Bot'
|
|
git config --global user.email 'uppybot@uppy.io'
|
|
|
|
# because a Travis deploy script has to be a real file
|
|
npm run web:deploy --quiet
|