Create new tag workflow (#1645)

This commit is contained in:
Matt Morley
2025-01-12 11:34:36 -07:00
committed by GitHub
parent 7d9f9a627c
commit d05032963d

17
.github/workflows/cut-new-tag.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
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
- run: git tag ${{ github.event.inputs.tag_name }}
- run: git push origin ${{ github.event.inputs.tag_name }}