├── README.md ├── .gitmodules └── .drone.yml /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "atom"] 2 | path = atom 3 | url = git://github.com/atom/atom 4 | -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- 1 | image: ubuntu:14.04 2 | git: 3 | depth: 1 4 | script: 5 | - cd atom; script/build 6 | - cd atom; script/build makedeb 7 | deploy: 8 | bash: 9 | script: 10 | - curl -T /tmp/atom-build -udz0ny:d23ca315f563456bce076b7046d1ac774e1be2ff9d659e30052ab3c166b8cc14 https://api.bintray.com/content/dz0ny/atomio/atom/$(git describe)/atom.deb --------------------------------------------------------------------------------