# action-push-tag **Repository Path**: mirrors_reMarkable/action-push-tag ## Basic Information - **Project Name**: action-push-tag - **Description**: 🔖 GitHub Action to push a Git tag - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-10 - **Last Updated**: 2025-10-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Action Push Tag [![actions-workflow-lint][actions-workflow-lint-badge]][actions-workflow-lint] [![release][release-badge]][release] [![license][license-badge]][license] This is a GitHub Action to push a Git tag. It would be more useful to use this with other GitHub Actions' outputs. ## Inputs | NAME | DESCRIPTION | TYPE | REQUIRED | DEFAULT | | --------- | -------------------------- | -------- | -------- | ------- | | `tag` | A Git tag name. | `string` | `true` | `N/A` | | `message` | A message for the Git tag. | `string` | `false` | `''` | ## Example ```yaml 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: actions-ecosystem/action-bump-semver@v1 id: bump-semver with: current_version: ${{ steps.get-latest-tag.outputs.tag }} level: minor - uses: actions-ecosystem/action-push-tag@v1 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](.github/workflows/release.yml). ## License Copyright 2020 The Actions Ecosystem Authors. Action Push Tag is released under the [Apache License 2.0](./LICENSE). [actions-workflow-lint]: https://github.com/actions-ecosystem/action-push-tag/actions?query=workflow%3ALint [actions-workflow-lint-badge]: https://img.shields.io/github/workflow/status/actions-ecosystem/action-push-tag/Lint?label=Lint&style=for-the-badge&logo=github [release]: https://github.com/actions-ecosystem/action-push-tag/releases [release-badge]: https://img.shields.io/github/v/release/actions-ecosystem/action-push-tag?style=for-the-badge&logo=github [license]: LICENSE [license-badge]: https://img.shields.io/github/license/actions-ecosystem/action-add-labels?style=for-the-badge