Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Apr 3, 2018
1 parent 77af70e commit b08b3d6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ after_success: |
echo "Uploaded code coverage to Coveralls"
before_deploy:
- sh ci/before_deploy.sh
- cargo build --release
- mkdir -p stage
- cp target/cov/rsbx stage/
- tar czf $CRATE_NAME-$TRAVIS_TAG-generic-$TRAVIS_OS_NAME.tar.gz stage/*
- mkdir -p uploads
- mv $CRATE_NAME-$TRAVIS_TAG-generic-$TRAVIS_OS_NAME.tar.gz uploads/

deploy:
# - Create a `public_repo` GitHub token. Go to: https://github.com/settings/tokens/new
Expand All @@ -54,7 +59,7 @@ deploy:
api_key:
secure: "j0BTFFfnfsUiNweG7r/KQ8TeNrJvrtPz+zGGMx8Y3rmr5WnuULV0XRDjwrQjY5jmsvj+K3bIdM9LRMJuWVEg2Yo2JtZU0NXLfalhJ+jSXvVbjIG1rchjzaLTZnC8Z1kGKy0KGEgpiIQfCH6W77pGREQxd0UDj50dPNmo+Or3UkF+UwXEys75yN/rGSDs+Ys0JFpXwLoscC6egEDexPBF1GvgJwqZwnCjmJDnxmz1/asp9TugUM4RCCAkpvzWFbuXQYlKc8/vdHHX/AyokyCsKPCjuXgBpnZChiUbRFcBPCyGorxAk64vfPIMUiItEEYD+d995q7bVDqeF4qtErBGg+Rcm/WfTblLF2R5/gQnc9GWqhBxlhQ4pSd00nrFyXZHxDjA5lZ7mQ5auJUt4zbQffZOgE4CJFFUIVAAv9WtwgMjtzbcx3I+seor7loe+ngk8Qga2hpzw2EwAL5RWnIMUf63OiEHflNIAa58ltb24l2yn/kw5O+zFCaGjxZpdrUDPFLM7pDNRHMyOtptwqRJnHrZQpZxyelK5MYF20C6NtkU9UDr2Iiu8NE8bbMAE673YLh9aA4O6w7LI9ztSag9o2/lQSVDzML3WtDGCeh7U1ilPWe44kKco/Pp5zstO28DNDVZxxODxQDRdqB5+qE6ZKoxcS1VxWTSe9GVjPFpZU0="
file_glob: true
file: $CRATE_NAME-$TRAVIS_TAG-$TARGET.*
file: uploads/*
on:
# In this example, there are some targets that are tested using the stable
# and nightly channels. This condition makes sure there is only one release
Expand Down

0 comments on commit b08b3d6

Please sign in to comment.