parent
5fa38b3e94
commit
56fa8c8977
@ -1,17 +1,16 @@
|
|||||||
name: 'Publish action versions'
|
name: "GitHub Publish Action"
|
||||||
description: 'Move the major version tag to point to a specified ref'
|
description: "Automates publishing of npm packages to a registry."
|
||||||
|
author: "Boom Token"
|
||||||
|
|
||||||
|
branding:
|
||||||
|
icon: "package" # Choose an icon (see options below)
|
||||||
|
color: "orange" # Choose a color (see options below)
|
||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
source-tag:
|
NPM_TOKEN:
|
||||||
description: 'Tag name that the major tag will point to. Examples: v1.2.3, 1.2.3'
|
description: "The npm authentication token for publishing."
|
||||||
required: true
|
required: true
|
||||||
slack-webhook:
|
|
||||||
description: 'Slack Webhook URL to post a message'
|
|
||||||
token:
|
|
||||||
description: 'Token to get an authenticated Octokit'
|
|
||||||
default: ${{ github.token }}
|
|
||||||
outputs:
|
|
||||||
major-tag:
|
|
||||||
description: 'The major version tag that has been updated (created). Examples: v1, 1'
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node20'
|
using: "node16"
|
||||||
main: 'dist/index.js'
|
main: "dist/index.js"
|
||||||
|
|||||||
Loading…
Reference in New Issue