publish demo to AppCenter #113
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: publish demo to AppCenter | |
on: | |
workflow_dispatch: | |
inputs: | |
diff_with_origin: | |
description: 'diff with origin' | |
required: true | |
default: 'origin/master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: build release | |
run: ./gradlew :sample:assembleDebug | |
- name: get the realease Notes | |
run: | | |
NEW_CHANGES=$(./gradlew -q :realeaseNotes -PdiffWithOrigin='${{ github.event.inputs.diff_with_origin }}') | |
echo "NEW_CHANGES<<EOF" >> $GITHUB_ENV | |
echo "$NEW_CHANGES" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- name: upload artefact to App Center | |
uses: wzieba/AppCenter-Github-Action@v1 | |
with: | |
appName: Tinkoff-Mobile-Core/Tinkoff-Acquiring | |
token: ${{secrets.APP_CENTER_TOKEN}} | |
group: Collaborators | |
file: sample/build/outputs/apk/debug/sample-debug.apk | |
notifyTesters: true | |
debug: false | |
releaseNotes: |+ | |
Branch name : ${{ github.head_ref || github.ref_name }} | |
Last changes : | |
${{ env.NEW_CHANGES }} |