From 4e65307f1613aca2c170e0321c57e156199fd74e Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Mon, 23 Jun 2025 11:20:23 +0200 Subject: [PATCH] fixed paths in workflows --- .github/workflows/build-appimage.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-appimage.yaml b/.github/workflows/build-appimage.yaml index a1a683a..8148197 100644 --- a/.github/workflows/build-appimage.yaml +++ b/.github/workflows/build-appimage.yaml @@ -28,13 +28,13 @@ jobs: - name: Preparing Build dir run: | mkdir -p app/bin - cp syng/resources/appimage/build.sh app/build.sh - cp syng/resources/appimage/bin/* app/bin/ + cp "${{ github.workspace }}/syng/resources/appimage/build.sh" app/build.sh + cp "${{ github.workspace }}/syng/resources/appimage/bin/*"" app/bin/ - name: Building AppDir uses: addnab/docker-run-action@v3 with: image: ghcr.io/christofsteel/syng-appimage-builder:main - options: -v v ${{ github.workspace }}/app:/app + options: -v v "${{ github.workspace }}"/app:/app run: | /app/build.sh export APPIMAGE_EXTRACT_AND_RUN=1 @@ -43,4 +43,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: Syng Version ${{ env.VERSION }} AppImage - path: app/Syng-x86_64.AppImage + path: "${{ github.workspace }}/app/Syng-x86_64.AppImage"