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
name: Android - Deploy Staging build to Firebase | |
on: | |
push: | |
branches: | |
- develop | |
- test-lucas | |
jobs: | |
build_and_deploy_android: | |
name: Android - Deploy Staging build to Firebase | |
runs-on: ubuntu-latest | |
environment: staging | |
timeout-minutes: 30 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Find Head | |
id: head | |
run: echo "::set-output name=head::$(git rev-parse HEAD)" | |
- name: Build changelog on "develop" | |
id: changelog | |
uses: mikepenz/release-changelog-builder-action@v4 | |
with: | |
configuration: ".github/workflows/configuration.json" | |
toTag: ${{ steps.head.outputs.head }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Print release notes | |
run: | | |
echo ${{ steps.head.outputs.head }} | |
echo ${{ steps.changelog.outputs.changelog }} |