Skip to content

Commit 99c11a3

Browse files
committed
Update README.md
[skip ci]
1 parent 2632ca4 commit 99c11a3

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff 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

2525
Copy `secure: "..."` string to `.travis.yml`:
2626

2727
```
2828
before_deploy:
29-
- export FILE_TO_UPLOAD=$(ls _builds/default-Release/Foo-*.tar.gz)
29+
- export FILE_TO_UPLOAD=$(ls _builds/*/Foo-*.tar.gz)
3030
3131
deploy:
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
```

0 commit comments

Comments
 (0)