File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ Create GitHub token with name like "Token for Travis CI deployment" and select `
2020 secure: " ...."
2121```
2222
23- #### Update Travis config
23+ #### Add token
2424
2525Copy ` secure: "..." ` string to ` .travis.yml ` :
2626
2727```
2828before_deploy:
29- - export FILE_TO_UPLOAD=$(ls _builds/default-Release /Foo-*.tar.gz)
29+ - export FILE_TO_UPLOAD=$(ls _builds/* /Foo-*.tar.gz)
3030
3131deploy:
3232 provider: releases
@@ -42,18 +42,19 @@ deploy:
4242* [ Travis GitHub deploy] ( http://docs.travis-ci.com/user/deployment/releases/ )
4343* [ Deploy with wildcards] ( http://stackoverflow.com/a/28579635/2288008 )
4444
45- #### Deploy Linux
45+ #### Enable Multi-OS
4646
47- ``` bash
48- > git checkout master
49- > git tag vA.B.C
50- > git push --tags
47+ * [ Travis CI Multi-OS] ( http://docs.travis-ci.com/user/multi-os/ )
48+
49+ ```
50+ os:
51+ - linux
52+ - osx
5153```
5254
53- #### Deploy OS X
55+ #### Deploy (Linux + OS X)
5456
5557``` bash
56- > git checkout osx
5758> git tag vA.B.C
5859> git push --tags
5960```
You can’t perform that action at this time.
0 commit comments