Bug fixes #14
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: Release experimental branch | |
on: | |
push: | |
branches: | |
- experimental | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
# https://github.com/atlassian/changesets/issues/550#issuecomment-811245508 | |
registry-url: https://registry.npmjs.org | |
- uses: oven-sh/setup-bun@v1 | |
- run: bun install && bun run build | |
- name: Publish packages on npm with @beta tag | |
run: | | |
npm run version-packages:beta | |
npm run release:beta | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |