Skip to content

Commit

Permalink
ci: add manual npm publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 authored Feb 14, 2025
1 parent 96ee082 commit e3dc651
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/manualNpmPublish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: manualNpmPublish

on:
workflow_dispatch:
inputs:
githubTag:
description: github tag that needs to publish
type: string
required: true
tag:
description: npm tag that needs to publish
type: string
required: false
default: latest

jobs:
npm:
uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main
with:
tag: ${{ inputs.tag || 'latest' }}
githubTag: ${{ inputs.githubTag }}
secrets: inherit

0 comments on commit e3dc651

Please sign in to comment.