Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

Github integration

jberkel edited this page Nov 15, 2011 · 6 revisions

Github integration

You can upload the apk files directly to github's file section, just set your github username in ~/.gitconfig:

[github]
    user = jberkel

Since API tokens are currently not supported you'll need to set your github password in the environment variable GITHUB_PASSWORD (subject to change).

You'll need to add Github.settings to your configuration in build.scala:

settings = General.androidFullProjectSettings ++ Github.settings ++ Seq (
  ...
  githubRepo in Android := "github-repo-name"
)

Then, from the sbt console:

> android:github-upload
[info] uploading to https://github.s3.amazonaws.com/

To delete the current version from github:

> android:github-delete
Clone this wiki locally