diff --git a/.forgejo/workflows/ci-cd.yml b/.forgejo/workflows/ci-cd.yml index 9c08629..89a052b 100644 --- a/.forgejo/workflows/ci-cd.yml +++ b/.forgejo/workflows/ci-cd.yml @@ -16,7 +16,7 @@ jobs: - name: Install dependencies run: | apt update - apt install -y sudo g++-multilib clang libgl1-mesa-dev + apt install -y sudo g++-multilib clang libgl1-mesa-dev zip - name: Build run: | @@ -27,12 +27,13 @@ jobs: run: | cp -r linux/release/cl_dlls photomode/cl_dlls cp -r linux/release/dlls photomode/dlls + zip -r photomode-linux.zip photomode - name: Deploy uses: forgejo/upload-artifact@v4 with: name: Linux-x86-${{ matrix.compiler }}-${{ github.sha }} - path: photomode/ + path: photomode-linux.zip if-no-files-found: error - name: Release @@ -41,6 +42,6 @@ jobs: with: url: https://code.nullprop.sh direction: upload - release-dir: photomode + release-dir: photomode-linux.zip tag: "${{ github.ref_name }}" token: ${{ secrets.TOKEN }}