fix(dependencies): set correct hono versions #157
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 | |
on: | |
push: | |
branches: | |
- main | |
- beta | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: canary | |
- run: bun install --globally yarn | |
- run: bun install | |
- name: Build | |
run: bun run build | |
- name: Release | |
run: yarn workspaces run semantic-release -e semantic-release-monorepo |