Merge pull request #132 from dyte-io/chore-fix-build-file #169
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: Release to NPM Registry | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - staging | |
| repository_dispatch: | |
| types: [prod-release] | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Install dependencies | |
| run: npm ci --no-fund --no-audit | |
| - name: Build package | |
| run: npm run build | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
| ENVIRONMENT: ${{ github.ref }} | |
| run: | | |
| npx semantic-release | |
| npx lerna exec -- npm publish --access public | |
| - name: Update staging branch | |
| if: | | |
| contains('refs/heads/main', github.ref) | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "dyte-devel" | |
| git pull | |
| git stash | |
| git checkout staging | |
| git merge main | |
| git push --set-upstream origin staging |