From 752f7b3b1cb8c561c905064136d5c953256a41a3 Mon Sep 17 00:00:00 2001 From: dcvz Date: Thu, 23 May 2024 23:49:12 +0200 Subject: [PATCH] Fix naming of archive --- .github/workflows/validate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 6aa4eab..a9e7861 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -91,19 +91,19 @@ jobs: run: | mv cmake-build/Zelda64Recompiled Zelda64Recompiled rm -rf assets/scss - tar -czf Zelda64Recompiled-${{ runner.os }}-${{ matrix.type }}.tar.gz Zelda64Recompiled assets/ + tar -czf Zelda64Recompiled.tar.gz Zelda64Recompiled assets/ - name: Archive Zelda64Recomp uses: actions/upload-artifact@v4 with: name: Zelda64Recompiled-${{ runner.os }}-${{ runner.arch }}-${{ matrix.type }} - path: Zelda64Recompiled-${{ runner.os }}-${{ runner.arch }}-${{ matrix.type }}.tar.gz + path: Zelda64Recompiled.tar.gz - name: Prepare AppImage run: ./.github/linux/appimage.sh - name: Zelda64Recomp AppImage uses: actions/upload-artifact@v4 with: name: Zelda64Recompiled-AppImage-${{ runner.arch }}-${{ matrix.type }} - path: Zelda64Recompiled-x86_64.AppImage + path: Zelda64Recompiled-*.AppImage build-windows: needs: authorize runs-on: windows-latest