Skip to content

fix(skeleton): iterate over new keys instead of old keys in replaceOb… #40

fix(skeleton): iterate over new keys instead of old keys in replaceOb…

fix(skeleton): iterate over new keys instead of old keys in replaceOb… #40

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
id-token: write
contents: write
issues: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Biome CI
run: pnpm biome ci .
- name: Build
run: pnpm build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: semantic
with:
semantic_version: 25
extra_plugins: |
@semantic-release/changelog@6.0
@semantic-release/git@10.0