Skip to content

feat(shared-dataflow): UpdatesStore leaf + adversarial-review hardening #15

feat(shared-dataflow): UpdatesStore leaf + adversarial-review hardening

feat(shared-dataflow): UpdatesStore leaf + adversarial-review hardening #15

Workflow file for this run

name: Release
on:
push:
branches: [main]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
if: github.repository == 'statewalker/statewalker-shared'
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 }}