From 80e207e8b54363eab1b3b8a550c1055a1ff3de36 Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Sun, 1 Jan 2023 19:03:36 +0100 Subject: [PATCH] Remove file removal action We can do this with a git tag and xargs which is cleaner --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bd273b..da6dc18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,9 +83,8 @@ jobs: test -n "${{ steps.previoustagwithprefix.outputs.tag }}" test -n "${{ steps.previoustagwithprefix.outputs.timestamp }}" - name: Remove tags - uses: JesseTG/rm@v1.0.2 - with: - path: .git/refs/tags + run: | + rm -r .git/refs/tags - name: Assert we got the tag with the expected prefix uses: therussiankid92/gat@v1 with: