Added capabilities to pluginQA #47
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: 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 | |
# Build-Sample-Apps-iOS: | |
# needs: [ Run-Unit-Tests ] | |
# uses: ./.github/workflows/build-ios.yml | |
Notify-Slack: | |
needs: [ Build-Sample-Apps-Android ] # , Build-Sample-Apps-iOS ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Extract version from pubspec.yaml | |
run: | | |
VERSION=$(grep 'version:' pubspec.yaml | sed 's/version: //') | |
echo "PACKAGE_VERSION=$VERSION" >> $GITHUB_ENV | |
shell: bash | |
- name: Extract iOS SDK version from podspec | |
run: | | |
cd ios | |
IOS_SDK_VERSION=$(grep "s.ios.dependency 'AppsFlyerFramework'" appsflyer_sdk.podspec | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+') | |
echo "IOS_SDK_VERSION=$IOS_SDK_VERSION" >> $GITHUB_ENV | |
shell: bash | |
- name: Extract Android SDK version | |
run: | | |
cd android | |
ANDROID_SDK_VERSION=$(cat build.gradle | grep 'com.appsflyer:af-android-sdk' | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+') | |
echo "ANDROID_SDK_VERSION=$ANDROID_SDK_VERSION" >> $GITHUB_ENV | |
shell: bash | |
- name: Extract CHANGELOG latest changes | |
run: | | |
PACKAGE_CHANGES=$(awk -v ver="$PACKAGE_VERSION" -v ORS=', ' ' | |
BEGIN { printing = 0; } | |
printing && /^## / { exit; } | |
$0 ~ "^## " ver { printing = 1; next; } | |
printing && NF { sub(/^-\s*/, ""); print; } | |
END { printf "\n" } # To ensure it ends with a newline | |
' CHANGELOG.md) | |
PACKAGE_CHANGES="${PACKAGE_CHANGES%', '}" | |
echo "PACKAGE_CHANGES<<EOF" >> $GITHUB_ENV | |
echo "$PACKAGE_CHANGES" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} | |
- name: Notify with SLack | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"version": "${{ env.PACKAGE_VERSION }}", | |
"branch" : "${{ github.ref }}", | |
"github-link" : "https://github.com/AppsFlyerSDK/appsflyer-flutter-plugin", | |
"iOS-version": "${{ env.IOS_SDK_VERSION }}", | |
"android-version": "${{ env.ANDROID_SDK_VERSION }}", | |
"changelog" : "${{ env.PACKAGE_CHANGES }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.CI_SLACK_WEBHOOK_URL }} |