Skip to content

Moved workflows to top level folder #1

Moved workflows to top level folder

Moved workflows to top level folder #1

##################################################################################
# About
##################################################################################
# Reuseable workflow to be called from content repos.
# Creates a internal release in play console
#
# Version : 1.0
#
##################################################################################
# Configuration
##################################################################################

Check failure on line 11 in .github/workflows/reusable-android-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/reusable-android-release.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
env:
APP_ID: ${{vars.APP_ID}}
GOOGLE_PLAY_SERVICE_ACCOUNT_JSON: ${{secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON}}
##################################################################################
# Main Code
##################################################################################
name: Android - Release to Google Play
on:
workflow_call:
jobs:
build:
uses: ./.github/workflows/contentflows/reusable-android-build.yml
secrets: inherit
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download Build Artifact
id: download
uses: actions/download-artifact@v3
with:
name: release_bundle
path: ./
- name: Upload to Google play
uses: r0adkll/[email protected]
with:
serviceAccountJsonPlainText: ${{ env.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON}}
packageName: ${{env.APP_ID}}
releaseFiles: ${{steps.download.outputs.download-path}}/app-release.aab
track: internal