Files
KeyPass/.github/workflows/master-apk-create.yml
renovate[bot] a8f47bfcd6 chore(deps): update actions/checkout action to v4 (#694)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-06 09:39:29 +05:30

38 lines
782 B
YAML

name: Create APK from Master
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- 'fastlane/**'
- '.github/**'
- 'icons/**'
- 'images/**'
- 'scripts/**'
- 'whatsnew/**'
- '**.md'
- '**.MD'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setting up project
uses: ./.github/actions/setup
- name: Build APK ⚙️🛠
run: bash ./gradlew assembleDebug
- 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/debug/*.apk