From a9be7c28361905eb67c8f06a4991b83676a23123 Mon Sep 17 00:00:00 2001 From: axel-kah Date: Sun, 7 Jul 2024 15:15:40 +0200 Subject: [PATCH] ci: fix inconsistent asset naming of nightly builds --- .github/workflows/debug_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debug_build.yml b/.github/workflows/debug_build.yml index bd0294d421..d307e25ea9 100644 --- a/.github/workflows/debug_build.yml +++ b/.github/workflows/debug_build.yml @@ -90,7 +90,7 @@ jobs: if: github.event_name == 'workflow_dispatch' uses: actions/upload-artifact@v4 with: - name: lychee-${{ github.sha }}-macos-x86_64.dmg + name: lychee-${{ github.sha }}-x86_64-macos.dmg path: target/release/lychee.dmg windows: @@ -120,5 +120,5 @@ jobs: if: github.event_name == 'workflow_dispatch' uses: actions/upload-artifact@v4 with: - name: lychee-${{ github.sha }}-windows-x86_64.exe + name: lychee-${{ github.sha }}-x86_64-windows.exe path: target/release/lychee.exe