Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

chore: duplicate licenses across sub projects #13

chore: duplicate licenses across sub projects

chore: duplicate licenses across sub projects #13

Workflow file for this run

name: Release & Publish
on:
push:
branches:
- main
jobs:
test:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
- name: Print Environment Info
run: npx nx report
- name: Release packages
run: npx nx release --skip-publish
- name: Publish packages
run: npx nx release publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true