Skip to content

Fix: install script silently skipped updates to existing installations #11

Fix: install script silently skipped updates to existing installations

Fix: install script silently skipped updates to existing installations #11

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write # For creating GitHub releases
id-token: write # For npm provenance
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Upgrade npm for OIDC Trusted Publishing
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci || npm install
- name: Run tests
run: npm test
- name: Validate skill structure
run: npm run validate
- name: Publish to npm
run: npm publish --provenance --access public
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
name: Release ${{ github.ref_name }}
body: |
See [CHANGELOG.md](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md) for details.
## Installation
```bash
npm install -g @ckelsoe/claude-skill-prompt-architect
prompt-architect-install
```
## What's Changed
Check the [CHANGELOG](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md) for full details.
draft: false
prerelease: false