Skip to content

build(deps): bump cross-spawn from 7.0.3 to 7.0.5 (#447) #637

build(deps): bump cross-spawn from 7.0.3 to 7.0.5 (#447)

build(deps): bump cross-spawn from 7.0.3 to 7.0.5 (#447) #637

name: Continuous Delivery
on:
workflow_dispatch:
inputs:
prNumber:
description: The number of the PR that is being deployed
required: false
type: string
ref:
description: The branch that is being deployed. Should be a branch on the given repository
required: false
default: main
type: string
repository:
description: The {owner}/{repository} that is being deployed.
required: false
default: sapphiredev/pieces
type: string
push:
branches:
- main
jobs:
Publish:
name: Publish Next to npm
uses: sapphiredev/.github/.github/workflows/reusable-continuous-delivery.yml@main
with:
pr-number: ${{ github.event.inputs.prNumber }}
ref: ${{ github.event.inputs.ref }}
repository: ${{ github.event.inputs.repository }}
secrets:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}