mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-06 16:41:33 -06:00
* Create common-workflow.yml * Created common workflow * Update android.yaml * update common workflow * Minor Improvements * Removed caching * Added needs support * add logs to see files * Update android.yaml * Bump checkout version * Common workflow changes * minor improvements * Minor improvements
27 lines
597 B
YAML
27 lines
597 B
YAML
name: Create APK from Master
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setting up project
|
|
uses: ./.github/actions/setup
|
|
|
|
- name: Build APK ⚙️🛠
|
|
run: bash ./gradlew assembleStagingDebug
|
|
|
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
|
with:
|
|
repo_token: "${{ github.token }}"
|
|
automatic_release_tag: "latest-master"
|
|
prerelease: true
|
|
title: "Staging Build"
|
|
files: app/build/outputs/apk/staging/debug/*.apk
|