Skip to content

Commit

Permalink
Added capabilities to pluginQA
Browse files Browse the repository at this point in the history
  • Loading branch information
al-af committed May 16, 2024
1 parent 722443b commit ed5d698
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 65 deletions.
63 changes: 0 additions & 63 deletions .github/workflows/notifySlack.yml

This file was deleted.

55 changes: 54 additions & 1 deletion .github/workflows/pluginQA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,57 @@ jobs:

Notify-Slack:
needs: [ Build-Sample-Apps-Android ] # , Build-Sample-Apps-iOS ]
uses: ./.github/workflows/notifySlack.yml
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 }}
2 changes: 1 addition & 1 deletion .github/workflows/publishPlugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Extract version from pubspec.yaml
run: |
Expand Down

0 comments on commit ed5d698

Please sign in to comment.