Update actions
Some checks failed
CI/CD / Linux-x86-clang++ (push) Successful in 2m1s
CI/CD / Linux-x86-g++ (push) Failing after 2m7s

This commit is contained in:
Lauri Räsänen 2025-01-11 23:45:34 +02:00
parent 7f9cc7f997
commit c6993bfaea

View file

@ -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 }}