From 597b1e9d759943751b62f8d0c1098b191b915b6f Mon Sep 17 00:00:00 2001 From: Zephrynis <132010650+zephrynis@users.noreply.github.com> Date: Sat, 12 Apr 2025 01:58:44 +0100 Subject: [PATCH] Fix: didnt change all occurences of wrong file name --- .github/workflows/export_ext.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/export_ext.yml b/.github/workflows/export_ext.yml index ab04007..bb82702 100644 --- a/.github/workflows/export_ext.yml +++ b/.github/workflows/export_ext.yml @@ -25,7 +25,7 @@ jobs: - name: Create zip of project files run: | - zip -r sidebar-${{ steps.get_version.outputs.VERSION }}.blueprint . -x "*.git*" + zip -r sidebar.blueprint . -x "*.git*" - name: Create Release id: create_release @@ -44,6 +44,6 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: sidebar.blueprint - asset_name: sidebar-${{ steps.get_version.outputs.VERSION }}.blueprint + asset_name: sidebar.blueprint tag: ${{ steps.get_version.outputs.VERSION }} overwrite: true