Skip to content

Commit 1a95dcb

Browse files
authored
Merge pull request #275 from Checkmarx/elchanan/fix/delete-tag-pattern
Fix tag pattern to correctly delete specified tag
2 parents c3860b8 + a3dd45c commit 1a95dcb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/delete-dev-releases.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ jobs:
2222
delete:
2323
runs-on: ubuntu-latest
2424
steps:
25-
2625
- name: Delete releases and tags
2726
continue-on-error: true
28-
uses: dev-drprasad/[email protected]
27+
uses: dev-drprasad/delete-older-releases@653dc03d96473ac9e585c68c8bf5aaccb0dadb61 #v0.2.1
2928
env:
3029
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3130
with:
3231
keep_latest: 0
33-
delete_tag_pattern: "-${{inputs.tag}}"
32+
delete_tag_pattern: "${{ inputs.tag }}"
3433
delete_tags: true

0 commit comments

Comments
 (0)