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: 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"
fromTag: "1.12.0"
toTag: ${{ steps.head.outputs.head }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Print release notes
run: |
echo ${{ steps.head.outputs.head }}
echo categorized_prs ${{ steps.changelog.outputs.categorized_prs }}
echo uncategorized_prs ${{ steps.changelog.outputs.uncategorized_prs }}
echo ${{ steps.changelog.outputs.changelog }}