feat(Drawer): add notification dropdown and integrate with Drawer com… #1590
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: Bit build, test and export | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| tag-and-export: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GIT_USER_NAME: ${{ github.actor }} | |
| GIT_USER_EMAIL: '${{ github.actor }}@users.noreply.github.com' | |
| BIT_CONFIG_ACCESS_TOKEN: ${{ secrets.BIT_TOKEN }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Initialize Bit | |
| uses: bit-tasks/init@v3 | |
| - name: Resolve component packages from bit.cloud registry | |
| run: | | |
| npm config set '@logora:registry' https://node.bit.cloud | |
| - name: Bit Tag and Export | |
| run: | | |
| bit tag --build --skip-tasks teambit.defender/linter | |
| bit export | |
| - name: Commit changes made to .bitmap | |
| run: | | |
| git config --global user.name '${{ env.GIT_USER_NAME }}' | |
| git config --global user.email '${{ env.GIT_USER_EMAIL }}' | |
| git add .bitmap | |
| git commit -m "update .bitmap with new component versions (automated) [skip ci]" | |
| git push |