Skip to content

Commit

Permalink
Create new tag workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Dec 20, 2024
1 parent 88bc63c commit a175aba
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cut-new-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 }}

0 comments on commit a175aba

Please sign in to comment.