From a14c796f82d01688a03fa9a3076bb8d2fd61655c Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Sun, 16 Feb 2025 21:45:49 -0800 Subject: [PATCH] Fix downloading artifacts with actions/download-artifact@v4 --- .github/workflows/verible-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verible-ci.yml b/.github/workflows/verible-ci.yml index 5d06fab89..d327edfbb 100644 --- a/.github/workflows/verible-ci.yml +++ b/.github/workflows/verible-ci.yml @@ -498,13 +498,13 @@ jobs: git tag "$TAG" || true echo "TAG=$TAG" >> $GITHUB_ENV - ls -lah artifact + ls -l verible-v* - name: Deploy release and assets uses: svenstaro/upload-release-action@2.9.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: artifact/verible*.{tar.gz,zip} + file: verible-v*.{tar.gz,zip}" tag: ${{ env.TAG }} overwrite: true file_glob: true