WIP: Automated android branch builds #1
This file contains 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
on: | |
pull_request: | |
branches: | |
- main | |
# types: | |
# - closed | |
name: Update Android Artifacts | |
permissions: | |
contents: read # write | |
jobs: | |
update-android-branch: | |
# if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo Running artifact update on branch ${GITHUB_REF##*/} | |
git checkout -b main-with-maven | |
git status | |
git reset --hard main | |
git status |