Skip to content

Releases: anothrNick/github-tag-action

Dry run option

10 Mar 19:52
25cc8cf
Compare
Choose a tag to compare
Merge pull request #48 from phish108/master

Adding DRY_RUN feature that fixes #47

Retrieve latest semvar tag in order

23 Jan 17:26
1b82315
Compare
Choose a tag to compare
  • Use the git for-each-ref command to extract the last semver tag in order, and only if it actually looks like a semver.
  • If semver fails at generating a new tag, don't just add v or $pre_release to an empty string.

Custom tag option

31 Dec 00:33
54300f1
Compare
Choose a tag to compare
Merge pull request #29 from imdanielsp/master

Add an Explicit Example of Optional Env Var

Create pre-release tags for Pull Requests

27 Oct 17:49
d7dc092
Compare
Choose a tag to compare

This lets the user define that only the master branch should be tagged.

Other branches or pull requests will compute a new version number (bumped as usual). But the version will be marked as a pre-release thanks to the pre-release postfix. So, instead of computing 1.2.3, the script will compute 1.2.3-1a2b3c4 and the next revision of the Pull Request (or feature branch build) will compute a similar version 1.2.3-2b3c4d5 (since no tag was put and supposedly master did not evolve in the meantime).

Set Action Output

14 Oct 12:55
f9e1720
Compare
Choose a tag to compare
  • Sets the new tag as an action output of new_tag

Script improvements

28 Sep 16:20
b326202
Compare
Choose a tag to compare
  • Tag version with v character (optional)
  • Dynamically get repo name, remove need for manual config of REPO_OWNER
  • Get refs api URL from event payload

Skip version bump if commit already tagged

23 Sep 14:18
63fe95a
Compare
Choose a tag to compare
  • Skips if commit is already tagged (#11)
  • Adds customizable DEFAULT_BUMP config, defaults to minor.

1.4.0 Use Alpine docker image to reduce Action runtime.

06 Sep 19:51
Compare
Choose a tag to compare

Github Marketplace Release

30 Aug 15:41
Compare
Choose a tag to compare
1.3.2

Update action settings. #patch

Initial Release

29 Aug 18:36
Compare
Choose a tag to compare

A Github Action to automatically bump and tag master, on merge, with the latest semver formatted version.