chore(ci): notify Discord after successful S3 deployment

[skip ci]
This commit is contained in:
Jagandeep Brar
2022-09-22 11:34:22 -04:00
parent 2ab098962d
commit e9c922ff39
6 changed files with 30 additions and 35 deletions

View File

@@ -3,10 +3,10 @@ name: Publish Android
on:
workflow_call:
inputs:
build-changelog:
build-flavor:
required: true
type: string
build-flavor:
build-motd:
required: true
type: string
build-title:
@@ -53,11 +53,11 @@ jobs:
- name: Generate Changelog
env:
CHANGELOG: ${{ inputs.build-changelog }}
CHANGELOG_PATH: ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs
MOTD: ${{ inputs.build-motd }}
PATH: ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs
run: |
mkdir -p $CHANGELOG_PATH
echo $CHANGELOG > $CHANGELOG_PATH/default.txt
mkdir -p $PATH
echo $MOTD > $PATH/default.txt
- name: Deploy to Google Play Store
working-directory: ${{ github.workspace }}/android