fix: update sapphire dependencies (#794) #1113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |