Skip to content

Various perf improvements (#425) #76

Various perf improvements (#425)

Various perf improvements (#425) #76

Workflow file for this run

name: "release"
on:
push:
tags:
- "*"
permissions:
contents: write
id-token: write
packages: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: "24"
registry-url: https://registry.npmjs.org
- name: enable corepack
run: corepack enable
shell: bash
- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v4
with:
path: |
**/node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
restore-keys: |
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-yarn-
- run: yarn install
- name: Update package.json version
run: |
TAG_NAME=${GITHUB_REF#refs/tags/}
jq --arg version "$TAG_NAME" '.version = $version' package.json > tmp.$$.json && mv tmp.$$.json package.json
- name: Publish to npm
run: |
if echo "$GITHUB_REF_NAME" | grep -q -- '-beta\|-alpha\|-rc'; then
npm publish --tag beta
else
npm publish
fi
- name: Create Github Release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: Release ${{ github.ref_name }}
tag: ${{ github.ref_name }}