Skip to content

Fixed deploy to qa workflow #2

Fixed deploy to qa workflow

Fixed deploy to qa workflow #2

Workflow file for this run

name: Plugin QA
on:
push:
branches:
- releases/[0-9].x.x/[0-9].[0-9]+.x/[0-9].[0-9]+.[0-9]+-rc[0-9]+
- testWorkflow
- CI-Actions
jobs:
Run-Unit-Tests:
uses: ./.github/workflows/runTest.yml
Build-Sample-Apps-Android:
needs: [ Run-Unit-Tests ]
uses: ./.github/workflows/build-android.yml

Check failure on line 16 in .github/workflows/pluginQA.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pluginQA.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pluginQA.yml" -> "./.github/workflows/build-android.yml" (source branch with sha:163c3421c9defaf56d79748d4b4f93aa5a0f4358) : workflow is not reusable as it is missing a `on.workflow_call` trigger
Build-Sample-Apps-iOS:
needs: [ Run-Unit-Tests ]
uses: ./.github/workflows/build-ios.yml
Deploy-To-QA:
needs: [ Build-Sample-Apps-Android, Build-Sample-Apps-iOS ]
runs-on: ubuntu-latest
steps:
- name: Notify with SLack
uses: slackapi/[email protected]
with:
payload: |
{
"version": "6.14.3"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.CI_SLACK_WEBHOOK_URL }}