Skip to content

Cut a new tag

Cut a new tag #2

Workflow file for this run

name: Cut a new tag
on:
workflow_dispatch:
inputs:
tag_name:
type: string
description: The full name of the new tag to push to the latest commit to main
jobs:
push_tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-ecosystem/action-push-tag@v1
with:
tag: ${{ github.event.inputs.tag_name }}