Skip to content
Michael Bely edited this page Feb 5, 2022 · 28 revisions

How To Securely Build and Sign Your Android App With GitHub Actions

GitFlow

Codeowners

.github/codeowners

* @michaelbel

Pull Request Template

.github/pull_request_template

**Task:**

**Screenshots:**

Issue Template

Configuring issue templates for your repository.

Sponsorships

Discussions

Dependabot

.github/dependabot.yml

version: 2
updates:
  - package-ecosystem: gradle
    directory: "/"
    schedule:
      interval: "daily"
      time: "10:00"
    open-pull-requests-limit: 1000
    reviewers:
      - "michaelbel"
    assignees:
      - "michaelbel"

GitHub Actions

Cancel Previews Runs

- name: Cancel Previous Runs
  uses: styfle/[email protected]
  with:
    access_token: ${{ github.token }}
  1. Настраиваем signinConfig в build.gradle. Берем переменные из локального файла, если он есть и из Actions Secret, если сборка удаленная.
  2. Перейти в SettingsSecrets и добавить переменные keyAlias, keyPassword и storePassword.
  3. С помощью этого сайта кодируем файл .jks
Clone this wiki locally