Files
KeyPass/.github/workflows/master-apk-create.yml
Yogesh Choudhary Paliyal 78ed9655e0 Create common-workflow.yml (#309)
* 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
2023-01-22 16:48:04 +05:30

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