This is a GitHub Action to push a Git tag.
It would be more useful to use this with other GitHub Actions' outputs.
NAME | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
tag |
A Git tag name. | string |
true |
N/A |
message |
A message for the Git tag. | string |
false |
'' |
ref |
Commit SHA or tag to target. | string |
false |
'' |
force |
A message for the Git tag. | boolean |
false |
false |
always-pass |
If step should pass if tag push fails | boolean |
false |
false |
name: Push a new tag with minor update
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-get-latest-tag@v1
id: get-latest-tag
- uses: thejeff77/[email protected]
id: bump-semver
with:
current_version: ${{ steps.get-latest-tag.outputs.tag }}
level: minor
- uses: thejeff77/[email protected]
with:
tag: ${{ steps.bump-semver.outputs.new_version }}
message: '${{ steps.bump-semver.outputs.new_version }}: PR #${{ github.event.pull_request.number }} ${{ github.event.pull_request.title }}'
For a further practical example, see .github/workflows/release.yml.
Copyright 2020 The Actions Ecosystem Authors.
Action Push Tag is released under the Apache License 2.0.