[READ-ONLY] Mirror of https://github.com/plttn/mkd.
0

Configure Feed

Select the types of activity you want to include in your feed.

add workflow

Jack Platten (May 24, 2026, 3:32 PM -0700) 85ae6301 8c75c019

+27
+27
.github/workflows/publish.yaml
··· 1 + name: Publish Package 2 + 3 + on: 4 + push: 5 + tags: 6 + - "v*" 7 + 8 + permissions: 9 + id-token: write # Required for OIDC 10 + contents: read 11 + 12 + jobs: 13 + publish: 14 + runs-on: ubuntu-latest 15 + steps: 16 + - uses: actions/checkout@v6 17 + 18 + - uses: actions/setup-node@v6 19 + with: 20 + node-version: "24" 21 + registry-url: "https://registry.npmjs.org" 22 + package-manager-cache: false # never use caching in release builds 23 + - uses: pnpm/action-setup@v4 24 + - run: pnpm ci 25 + - run: pnpm run build 26 + - run: pnpm test 27 + - run: pnpm publish --access public