Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.05 KB

README.md

File metadata and controls

31 lines (25 loc) · 1.05 KB

GitHub & Travis Docker-based Build & Deploy Integration

GitHub release Travis (.com)

Use -v or --volume flag in docker run to to bind mount a volume, and -w or --workdir flag to set working directory.

Use the following command to generate api_key:

travis setup releases --com

Previous access toknes are available at https://github.com/settings/tokens.

Add the following parts to deploy section of .travis.yml:

deploy:
  provider: releases
  file_glob: true
  skip_cleanup: true
  on:
    tags: true

References