From a9f4f9f76adb833765b8e8cc4c6ffb374062068e 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 e22b721..9245f02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,9 +47,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: