Github Actions: App version Bumped to v1.4.40 #613
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 assembleFreeDebug | |
- 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/free/debug/*.apk |