Skip to content

fix: update sapphire dependencies (#794) #1113

fix: update sapphire dependencies (#794)

fix: update sapphire dependencies (#794) #1113

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/framework
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 }}