Skip to content

Commit

Permalink
Add release workflow for experimental branch
Browse files Browse the repository at this point in the history
  • Loading branch information
clauderic authored Jun 3, 2024
1 parent 694dcc2 commit e2a1776
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-experimental.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release experimental branch
on:
push:
branches:
- experimental
jobs:
release:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v1
- uses: oven-sh/setup-bun@v1
- run: bun install && bun run build

- name: Publish packages on npm with @beta tag
run: |
bun run version-packages:beta
bun run release:beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit e2a1776

Please sign in to comment.