Update open api generated models in Video SDK(1/4) (#1713) #1651
This file contains hidden or 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: Publish Snapshot builds | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| # 👇 This line ensures only one snapshot publish runs at a time. | |
| concurrency: | |
| group: snapshot-publish | |
| cancel-in-progress: false | |
| jobs: | |
| release: | |
| permissions: | |
| contents: write | |
| uses: GetStream/stream-build-conventions-android/.github/workflows/release.yml@v0.13.1 | |
| with: | |
| bump: patch | |
| snapshot: true | |
| secrets: | |
| github-token: ${{ secrets.STREAM_PUBLIC_BOT_TOKEN }} | |
| maven-central-username: ${{ secrets.OSSRH_USERNAME }} | |
| maven-central-password: ${{ secrets.OSSRH_PASSWORD }} | |
| signing-key: ${{ secrets.SIGNING_KEY }} | |
| signing-key-id: ${{ secrets.SIGNING_KEY_ID }} | |
| signing-key-password: ${{ secrets.SIGNING_PASSWORD }} | |
| slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_ANDROID_CICD }} |