chore(types,client,react): bump version #5
Workflow file for this run
This file contains 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 @tg-app/types package | |
on: | |
push: | |
tags: | |
- 'types/v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
push_to_registry: | |
name: Build and publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- run: yarn rebuild | |
- run: yarn config set npmScopes.tg-app.npmAuthToken ${{ secrets.NPM_TOKEN }} | |
- run: yarn workspace @tg-app/types build | |
- run: yarn workspace @tg-app/types npm publish |