Skip to content

Commit

Permalink
Add workflow for fixing tags after failed release (#60)
Browse files Browse the repository at this point in the history
Create tag.yml
  • Loading branch information
adierkens authored Aug 16, 2022
1 parent 58e5c50 commit f48d916
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Tag

on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
version:
description: 'Define env name'
required: true
default: 'v0.0.0'
jobs:
create-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
with:
tag: "${{ github.event.inputs.version }}"
message: "Latest release"

0 comments on commit f48d916

Please sign in to comment.