fixed paths in workflows
Some checks failed
Check / ruff (push) Waiting to run
Check / mypy (push) Has been cancelled

This commit is contained in:
Christoph Stahl 2025-06-23 11:20:23 +02:00
parent f6893608fb
commit 4e65307f16

View file

@ -28,13 +28,13 @@ jobs:
- name: Preparing Build dir - name: Preparing Build dir
run: | run: |
mkdir -p app/bin mkdir -p app/bin
cp syng/resources/appimage/build.sh app/build.sh cp "${{ github.workspace }}/syng/resources/appimage/build.sh" app/build.sh
cp syng/resources/appimage/bin/* app/bin/ cp "${{ github.workspace }}/syng/resources/appimage/bin/*"" app/bin/
- name: Building AppDir - name: Building AppDir
uses: addnab/docker-run-action@v3 uses: addnab/docker-run-action@v3
with: with:
image: ghcr.io/christofsteel/syng-appimage-builder:main image: ghcr.io/christofsteel/syng-appimage-builder:main
options: -v v ${{ github.workspace }}/app:/app options: -v v "${{ github.workspace }}"/app:/app
run: | run: |
/app/build.sh /app/build.sh
export APPIMAGE_EXTRACT_AND_RUN=1 export APPIMAGE_EXTRACT_AND_RUN=1
@ -43,4 +43,4 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: Syng Version ${{ env.VERSION }} AppImage name: Syng Version ${{ env.VERSION }} AppImage
path: app/Syng-x86_64.AppImage path: "${{ github.workspace }}/app/Syng-x86_64.AppImage"