Skip to content

Commit

Permalink
ci: support deleting tags and associated releases
Browse files Browse the repository at this point in the history
  • Loading branch information
johanvx committed Nov 22, 2023
1 parent 4f2cc31 commit df33784
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Clean up
on:
workflow_dispatch:
inputs:
version:
description: "SemVer"
required: true
type: string
jobs:
clean-up:
runs-on: macos-latest
steps:
- name: Delete the given tag and release
uses: dev-drprasad/delete-tag-and-release@v1.0
with:
tag_name: "v${{ inputs.version }}"
github_token: ${{ secrets.PAT }}

0 comments on commit df33784

Please sign in to comment.