We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 785f932 commit 0cd0f98Copy full SHA for 0cd0f98
2 files changed
.travis.yml
@@ -38,7 +38,8 @@ script:
38
- ./release.sh
39
40
before_deploy:
41
- - export NEXT=${TEST}
+ - export NEXT=$(cat my_var.txt)
42
+ - rm my_var.txt
43
44
deploy:
45
- provider: pages:git
release.sh
@@ -59,6 +59,7 @@ if [ "$BRANCH" == "dev" ] || [ "$BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUES
59
git add CHANGELOG.md
60
echo "hello world" > hello.txt
61
export TEST="version 1.0.4"
62
+ echo ${TEST} > my_var.txt
63
64
hub release create "$new_tag" -m "$new_tag" || true
65
fi
0 commit comments