[travis] add placeholder 'deploy' target for Github Releases
diff --git a/.travis.yml b/.travis.yml
index e5b86a1..85c2e8f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,17 @@
 after_success:
 - pip wheel -w dist .
 before_deploy:
-- cd dist
-- "wheels=$(echo *.whl)"
-#deploy:
-# - TODO: upload the content of $wheels to a public wheelhouse
+- export WHEELS=$(ls ./dist/*.whl)
+
+# use `travis setup releases` to create a Github OAuth token
+# http://docs.travis-ci.com/user/deployment/releases/
+
+# deploy:
+#   provider: releases
+#   api_key: <encrypted Github OAuth token> 
+#   file:
+#     - "${WHEELS}"
+#   skip_cleanup: true
+#   on:
+#     repo: google/brotli
+#     tags: true