Skip to content
name: Android - Deploy Production build to Firebase
on:
push:
branches:
- main
- test-lucas
jobs:
build_and_deploy_android:
name: Android - Deploy Production build to Firebase
runs-on: ubuntu-latest
environment: production
timeout-minutes: 30
steps:
- name: Check out
uses: actions/checkout@v3
- name: Build changelog on "main"
id: changelog
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: ".github/workflows/configuration.json"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Print release notes
run: |
echo categorized_prs ${{ steps.changelog.outputs.categorized_prs }}
echo uncategorized_prs ${{ steps.changelog.outputs.uncategorized_prs }}
echo "${{ steps.changelog.outputs.changelog }}"