Skip to content

Commit

Permalink
feat(workflow): android build
Browse files Browse the repository at this point in the history
  • Loading branch information
camarm-dev committed Jul 6, 2024
1 parent 60be06d commit f9b00c3
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/build.android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: 'Build Remède android application'

on:
push:
branches:
- dev

jobs:
build-android:
permissions:
contents: write
runs-on: 'ubuntu-latest'
steps:
- uses: sparkfabrik/[email protected]
with:
project-path: app/android
output-path: builds/remede.apk
browserstack-upload: true
ruby-version: "2.7.5"
bundler-version: "2.3.26"
fastlane-env: "debug"

- name: Commit changes
run: |
git config --local user.name actions-user
git config --local user.email "[email protected]"
git config pull.rebase true
git add builds/*
git commit -m "chore(binaries): added latest Remède binaries"
git pull
- name: Push changes # push the output folder to your repo
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force: true
branch: 'dev'
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Build Remède native applications'
name: 'Build Remède desktop applications'

on:
push:
Expand Down

0 comments on commit f9b00c3

Please sign in to comment.