Refactor: Update action versions to v5

This commit is contained in:
2025-10-04 14:47:20 -07:00
parent f667d4dbb3
commit 26c6ce7254

15
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- run: npm ci || npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}