From 8da6f1b64d0a10cc66189da5c151ea40b71bbbf9 Mon Sep 17 00:00:00 2001 From: DJ2LS Date: Fri, 19 Apr 2024 11:50:18 +0200 Subject: [PATCH] adjusted appimage bundle path --- .github/workflows/build_appimage_bundle.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_appimage_bundle.yml b/.github/workflows/build_appimage_bundle.yml index 7131d5dc..b0557d25 100644 --- a/.github/workflows/build_appimage_bundle.yml +++ b/.github/workflows/build_appimage_bundle.yml @@ -108,25 +108,19 @@ jobs: - name: LIST ALL FILES run: ls -R - - name: Move AppImage - run: | - cp FreeDATA-x86_64.AppImage $HOME/FreeDATA-x86_64.AppImage - - - name: LIST ALL FILES - run: ls -R - name: Upload artifact uses: actions/upload-artifact@v4 with: name: 'FreeDATA-x86_64.AppImage' - path: ./$HOME/FreeDATA-x86_64.AppImage + path: FreeDATA-x86_64.AppImage - name: Upload Installer to Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/v') with: draft: true - files: ./$HOME/FreeDATA-x86_64.AppImage + files: FreeDATA-x86_64.AppImage tag_name: ${{ github.ref_name }} name: 'FreeDATA-x86_64.AppImage'