From 8d0ee6a2deebf650c94116c1ac013c9e1ada7b2d Mon Sep 17 00:00:00 2001 From: DevContainer User Date: Wed, 4 Mar 2026 02:02:50 +0000 Subject: [PATCH] fix: remove redundant mv in release workflow headlamp-plugin package already produces the tarball named ${PKG_NAME}-${VERSION}.tar.gz, so the mv was renaming the file to itself and failing. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index db8db0a..5d47e0a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -71,7 +71,6 @@ jobs: VERSION="${{ inputs.version }}" PKG_NAME=$(jq -r .name package.json) TARBALL="${PKG_NAME}-${VERSION}.tar.gz" - mv *.tar.gz "$TARBALL" echo "TARBALL=$TARBALL" >> $GITHUB_ENV echo "PKG_NAME=$PKG_NAME" >> $GITHUB_ENV