Skip to content

Jenkins plugin to upload artefacts to AppCenter

License

Notifications You must be signed in to change notification settings

rgaba/appcenter-plugin

This branch is 1 commit behind jenkinsci/appcenter-plugin:master.

Folders and files

NameName
Last commit message
Last commit date
Oct 11, 2020
Mar 23, 2021
Oct 11, 2020
Jan 27, 2019
Aug 11, 2019
Apr 30, 2019
Feb 5, 2020
Apr 1, 2021

Repository files navigation

AppCenter Plugin

Jenkins Plugin GitHub release Jenkins Plugin Installs

Jenkins plugin to upload artefacts to AppCenter. A replacement for the HockeyApp plugin.

Roadmap

This plugin is currently in Alpha and looking for contributors. To begin with it will aim to support the upload functionality of AppCenter. When the APIs for AppCenter become stable this plugin will be eligible to be moved out of Alpha.

These are the outstanding tickets for this project.

Contributing

If you would like to contribute it would be massively helpful if you followed these steps:

  1. Create an issue first in the Jenkins issue tracker.
    • Use the component appcenter-plugin.
  2. Create a branch from master referencing your issue id.
  3. Commit, commit, commit.
  4. Push your changes and file a PR.

Usage Instructions

Up to date syntax for this plugin can always be found in the Jenkins Pipeline Syntax Generator. However in its simplest form you can upload an artefact to AppCenter like this:

stage('Publish') {
  environment {
    APPCENTER_API_TOKEN = credentials('at-this-moment-you-should-be-with-us')
  }
  steps {
    appCenter apiToken: APPCENTER_API_TOKEN,
            ownerName: 'janes-addiction',
            appName: 'ritual-de-lo-habitual',
            pathToApp: 'three/days/xiola.apk',
            distributionGroups: 'casey, niccoli'
  }
}

It may sound obvious but ensure the file you are trying to upload is available on the node that you are running the plugin from.

Changelog

See release page.

About

Jenkins plugin to upload artefacts to AppCenter

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 98.7%
  • HTML 1.3%