Fix default Giphy frame-rate by using ORIGINAL info type (#6392)
#2409
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: | |
| concurrency: | |
| group: snapshot-release | |
| cancel-in-progress: false | |
| jobs: | |
| release: | |
| permissions: | |
| contents: write | |
| uses: GetStream/stream-build-conventions-android/.github/workflows/release.yml@v0.11.0 | |
| 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 }} |