This commit is contained in:
Bryce Thorup
2024-01-01 10:55:15 -07:00
commit af712c1670
3 changed files with 12 additions and 0 deletions

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# versioned_release
gitea action for creating a version tag when the `version` value in `package.json` has changed and a tag with the version number does not already exist.

1
action.sh Executable file
View File

@@ -0,0 +1 @@
echo $NPM_REPO_KEY

8
action.yaml Normal file
View File

@@ -0,0 +1,8 @@
name: npm-publish
description: "publishes latest version tag to a npm repository"
author: "Bryce Thorup"
runs:
using: "composite"
steps:
- run: $GITHUB_ACTION_PATH/action.sh
shell: bash