Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish to npm

on:
release:
types: [created]
workflow_dispatch:
inputs:
version:
description: 'Version to publish'
required: false
default: '1.0.0'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Binary file added DEV.md
Binary file not shown.
Binary file added EMOJI-TEST.md
Binary file not shown.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,5 +450,4 @@ MIT License - see [LICENSE](LICENSE) file for details
*Last Updated: $(Get-Date -Format "yyyy-MM-dd HH:mm:ss UTC")*
*Version: 1.2.0*
*Status: 🟢 Production Ready*
# Test trigger 05/25/2026 22:15:40
# Test trigger 05/25/2026 22:15:40
Loading