Skip to content

chore: Add registry to publish config #39

chore: Add registry to publish config

chore: Add registry to publish config #39

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital
# SPDX-License-Identifier: MIT
name: Publish to NPM
on:
release:
types: [published]
push:
branches:
- chore/publish
jobs:
publish:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install
- run: pnpm nx run-many -t check:all --all
- run: pnpm -r publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}