Implement the "publish-action" action

This commit is contained in:
MaksimZhukov
2021-05-21 19:59:44 +03:00
parent d90d23df2a
commit d8eb8e53b7
22 changed files with 12475 additions and 0 deletions

15
action.yml Normal file
View File

@ -0,0 +1,15 @@
name: 'Publish action versions'
description: 'Move the major version tag to point to the specified ref'
inputs:
source-tag:
description: 'Tag name that the major tag will point to. Examples: v1.2.3, 1.2.3'
required: true
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:
using: 'node12'
main: 'dist/index.js'