Skip to content

Merge pull request #24 from adrianhdezm/codex/fix-dict-comments-inden… #11

Merge pull request #24 from adrianhdezm/codex/fix-dict-comments-inden…

Merge pull request #24 from adrianhdezm/codex/fix-dict-comments-inden… #11

Workflow file for this run

name: Publish NPM Package
on:
push:
tags:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org/
node-version-file: '.node-version'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}