Skip to content

npm publish staging

npm publish staging #1

Workflow file for this run

name: npm publish staging
description: Publish a staging version on npm
on:
workflow_dispatch:
jobs:
compute-staging-version:
uses: ./.github/workflows/reusable-compute-staging-version.yml
npm-publish:
uses: ./.github/workflows/reusable-npm.yml
needs: compute-staging-version
with:
dry-run: true # TODO set to false
version: ${{ needs.compute-staging-version.outputs.version }}
tag: ${{ needs.compute-staging-version.outputs.dist-tag }}
secrets:
npm-token: ${{ secrets.NPM_TOKEN }}