Skip to content

chore: add changeset for hono bump to v4.11.4 πŸ“¦ #80

chore: add changeset for hono bump to v4.11.4 πŸ“¦

chore: add changeset for hono bump to v4.11.4 πŸ“¦ #80

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [published]
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
if: github.repository_owner == 'rphlmr'
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: πŸ‘· Install pnpm
uses: pnpm/action-setup@v4
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- name: πŸ“₯ Install dependencies
run: pnpm install --frozen-lockfile
- name: πŸ¦‹ Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm run release
title: "chore: release package"
commit: "chore: release package"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}