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 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 -e ${{ steps.changelog.outputs.changelog }} |