Skip to content
This repository was archived by the owner on Aug 11, 2026. It is now read-only.

refactor: migrate to @statewalker/shared-ids and drop content-blocks/… #9

refactor: migrate to @statewalker/shared-ids and drop content-blocks/…

refactor: migrate to @statewalker/shared-ids and drop content-blocks/… #9

Workflow file for this run

name: Release
on:
push:
branches: [main]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
if: github.repository == 'statewalker/statewalker-content'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: pnpm
registry-url: "https://registry.npmjs.org"
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- name: Create release PR or publish
uses: changesets/action@v1
with:
publish: pnpm run release-packages
version: pnpm run version-packages
commit: "chore: version packages"
title: "chore: version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}