Skip to content
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: Build changelog on "develop"
id: changelog
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: ".github/workflows/configuration.json"
fromTag: "f41978f4c4bcc0848f3aa0a413815c5db6aafde2"
toTag: "fbe391605727a126520410a49b6a878573c70c8c"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Print release notes
run: |
echo ${{ github.event.pull_request.head.ref }}
echo ${{ steps.changelog.outputs.changelog }}