File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,3 +153,25 @@ jobs:
153153 branch : dl/update_snapshot_ver
154154 title : Prepare snapshot version ${{ steps.update.outputs.SNAPSHOT_VERSION }}
155155 commit-message : Prepare snapshot version ${{ steps.update.outputs.SNAPSHOT_VERSION }}
156+
157+ notify-components-android :
158+ needs : release
159+ name : Notify Components Android
160+ if : ${{ needs.release.outputs.hasPublished == 'true' }}
161+ runs-on : ubuntu-latest
162+
163+ steps :
164+ - name : Checkout Repo
165+ uses : actions/checkout@v4
166+
167+ - name : Get version
168+ id : version
169+ run : echo "VERSION=$(./ci/get_version.sh)" >> "$GITHUB_OUTPUT"
170+
171+ - name : Dispatch to components-android
172+ uses : peter-evans/repository-dispatch@v3
173+ with :
174+ token : ${{ secrets.E2E_DISPATCH_TOKEN }}
175+ repository : livekit/components-android
176+ event-type : update-livekit-version
177+ client-payload : ' {"version": "${{ steps.version.outputs.VERSION }}"}'
You can’t perform that action at this time.
0 commit comments