name: Publicar Paquete SigPro (NPM) on: workflow_dispatch: push: tags: - 'v*' jobs: publish: runs-on: ubuntu-latest container: image: node:20-bullseye options: >- --dns 192.168.1.1 --add-host git.natxocc.com:host-gateway --add-host gitea:host-gateway steps: - name: Checkout código uses: actions/checkout@v4 - name: Instalar Bun run: | curl -fsSL https://bun.sh/install | bash echo "$HOME/.bun/bin" >> $GITHUB_PATH - name: Instalar y Build run: | export PATH="$HOME/.bun/bin:$PATH" bun install bun run build - name: Configurar Registro y Publicar run: | # 1. Definimos la URL del registro REGISTRY="git.natxocc.com/api/packages/natxocc/npm/" # 2. Configuramos el .npmrc usando tu nuevo secreto PACK_TOKEN # Importante: Hemos cambiado GITEA_TOKEN por PACK_TOKEN aquí: echo "//${REGISTRY}:_authToken=${{ secrets.PACK_TOKEN }}" > ~/.npmrc # 3. Publicamos forzando el registro npm publish --registry "https://${REGISTRY}" --userconfig ~/.npmrc