fix(android): using correct topic name for storing subscriptions (#62) #27
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: Pre-Release | |
| on: | |
| push: | |
| branches: | |
| - "release/**" | |
| jobs: | |
| increment-version: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: Assign version to RELEASE_VERSION environment variable | |
| run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/*/}" >> $GITHUB_ENV | |
| - name: Bump npm package version | |
| run: | | |
| yarn install --immutable | |
| yarn version $RELEASE_VERSION | |
| - name: Push version bump commit | |
| uses: EndBug/add-and-commit@v9 | |
| - name: Validate Publish Flow | |
| run: yarn pack --dry-run |