Merge pull request #30 from tableflowhq/feature/select-tooltips #82
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
# .github/workflows/release-package.yml | |
name: Create Package | |
on: | |
push: | |
paths-ignore: | |
- 'package.json' | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: yarn install | |
publish-to-registry: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{secrets.BOT_ACCESS_TOKEN}} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org | |
- run: yarn install | |
- run: git config --global user.email "[email protected]" && git config --global user.name "TableFlow-Bot" | |
- run: yarn version --minor | |
- run: git push --tags && git push | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.PUBLISH_TOKEN}} |