Skip to content

v10.0.9

v10.0.9 #2

Workflow file for this run

name: Post-Release Actions
on:
release:
types:
- created
jobs:
bump-cross-platform-sdks:
runs-on: ubuntu-latest
steps:
- name: Create Flutter PR
run: |
curl -X POST \
-H "Authorization: Bearer ${{ secrets.GH_PAT }}" \
-H "Accept: application/vnd.github.everest-preview+json" \
-H "Content-Type: application/json" \
https://api.github.com/repos/smileidentity/flutter/actions/workflows/release_ios.yml/dispatches \
--data '{"ref": "main","inputs": {"ios_release_version": "${{ github.event.release.tag_name }}" }}'
- name: Create React Native PR
run: |
curl -X POST \
-H "Authorization: Bearer ${{ secrets.GH_PAT }}" \
-H "Accept: application/vnd.github.everest-preview+json" \
-H "Content-Type: application/json" \
https://api.github.com/repos/smileidentity/react-native/actions/workflows/ios_release.yml/dispatches \
--data '{"ref": "main","inputs": {"ios_release_version": "${{ github.event.release.tag_name }}" }}'
update-docs-release-notes:
runs-on: ubuntu-latest
steps:
- name: Checkout ios
uses: actions/checkout@v4
with:
path: ios
- name: Checkout docs
uses: actions/checkout@v4
with:
repository: smileidentity/docs
path: docs
token: ${{ secrets.GH_PAT }}
- name: Copy CHANGELOG.md to Release Notes
run: cp ios/CHANGELOG.md docs/integration-options/mobile/ios-v10/release-notes.md
- name: Create docs PR
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GH_PAT }}
path: docs
commit-message: iOS ${{ github.event.release.tag_name }} Release Notes
title: iOS ${{ github.event.release.tag_name }} Release Notes
body: Automated PR to update the release notes
branch: ios-release-notes-${{ github.event.release.tag_name }}
labels: "release-notes"
team-reviewers: "smileidentity/mobile"