Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neverendingqs/gh-action-tag-on-npm-version
Creates a new Git tag whenever the npm package version has changed.
https://github.com/neverendingqs/gh-action-tag-on-npm-version
github-actions npm
Last synced: 6 days ago
JSON representation
Creates a new Git tag whenever the npm package version has changed.
- Host: GitHub
- URL: https://github.com/neverendingqs/gh-action-tag-on-npm-version
- Owner: neverendingqs
- License: apache-2.0
- Created: 2020-08-22T02:08:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T00:26:40.000Z (over 1 year ago)
- Last Synced: 2024-05-01T16:04:51.681Z (7 months ago)
- Topics: github-actions, npm
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gh-action-tag-on-npm-version
Creates a new Git tag whenever the npm package version has changed. Works well
with [publish-me-maybe](https://www.npmjs.com/package/publish-me-maybe).## Example usage
```yaml
name: Tag new npm package releases
on:
push:
branches:
- master
paths:
- package.json
jobs:
tag-npm-release:
name: Tag new npm package releases
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
- uses: neverendingqs/gh-action-tag-on-npm-version@master
```