Skip to content

fix(android): using correct topic name for storing subscriptions (#62) #27

fix(android): using correct topic name for storing subscriptions (#62)

fix(android): using correct topic name for storing subscriptions (#62) #27

Workflow file for this run

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