1.0.1 • Published 7 months ago

@lifeomic/semantic-release-actions-tagging v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

A semantic-release plugin for creating Git tags matching GitHub Actions convention. Use this plugin if you want to use semantic-release to version your custom GitHub Actions.

Installation

yarn add -D @lifeomic/semantic-release-actions-tagging

Usage

// release.config.js
module.exports = {
  branches: ['master'],
  plugins: [
    ['@semantic-release/commit-analyzer', { preset: 'conventionalcommits' }],
    // Declare here.
    '@lifeomic/semantic-release-actions-tagging',
  ],
};

Behavior

The config above will cause major + minor tags to be created when releasing a new version.

e.g. if your recent commits will result in a new v1.2.3 version being published, this plugin will also:

  • create a new (or move an existing) v1 tag pointed to the same commit
  • create a new (or move an existing) v1.2 tag pointed to the same commit
1.0.1

7 months ago

1.0.0

7 months ago