chore(progress): remove type definition in stories #11
Workflow file for this run
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: Bump mobile version | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: [master] | |
| paths: | |
| - 'mobile/kmp/**' | |
| jobs: | |
| bump: | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/create-github-app-token@v1 | |
| id: app-token | |
| with: | |
| app-id: ${{ vars.ATLANTIS_SUPER_BOT_APP_ID }} | |
| private-key: ${{ secrets.ATLANTIS_SUPER_BOT_PRIVATE_KEY }} | |
| - uses: actions/checkout@v5 | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - name: Bump version | |
| id: bump | |
| working-directory: mobile/kmp | |
| run: | | |
| VERSION=$(./gradlew bumpVersion -Pmodule=ui -Pbump=minor | grep '^VERSION=' | cut -d= -f2) | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| - name: Commit | |
| uses: planetscale/ghcommit-action@v0.2.0 | |
| env: | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| with: | |
| repo: ${{ github.repository }} | |
| branch: master | |
| commit_message: "chore(common): version bump to ${{ steps.bump.outputs.version }}" | |
| file_pattern: mobile/kmp/** |