Skip to content

Add instructions to add a new type of token #248

Add instructions to add a new type of token

Add instructions to add a new type of token #248

Workflow file for this run

name: "Generate catalog app"
on:
pull_request:
branches:
- main
types: [closed]
jobs:
catalog:
runs-on: ubuntu-latest
steps:
- name: Check pull request status
if: "!github.event.pull_request.merged == true"
run: 'echo "Skipping generation, pull request is not merged"'
- name: Checkout repo
if: github.event.pull_request.merged == true
uses: actions/checkout@v2
- name: Publish catalog
if: github.event.pull_request.merged == true
env:
APPCENTER_API_TOKEN: ${{ secrets.APPCENTER_API_TOKEN }}
run: 'bash ./gradlew clean check appCenterAssembleAndUploadDebug -Dappcenter_app_name=Mistica'