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 - name: Install dependencies
run: | run: |
apt update 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 - name: Build
run: | run: |
@ -27,12 +27,13 @@ jobs:
run: | run: |
cp -r linux/release/cl_dlls photomode/cl_dlls cp -r linux/release/cl_dlls photomode/cl_dlls
cp -r linux/release/dlls photomode/dlls cp -r linux/release/dlls photomode/dlls
zip -r photomode-linux.zip photomode
- name: Deploy - name: Deploy
uses: forgejo/upload-artifact@v4 uses: forgejo/upload-artifact@v4
with: with:
name: Linux-x86-${{ matrix.compiler }}-${{ github.sha }} name: Linux-x86-${{ matrix.compiler }}-${{ github.sha }}
path: photomode/ path: photomode-linux.zip
if-no-files-found: error if-no-files-found: error
- name: Release - name: Release
@ -41,6 +42,6 @@ jobs:
with: with:
url: https://code.nullprop.sh url: https://code.nullprop.sh
direction: upload direction: upload
release-dir: photomode release-dir: photomode-linux.zip
tag: "${{ github.ref_name }}" tag: "${{ github.ref_name }}"
token: ${{ secrets.TOKEN }} token: ${{ secrets.TOKEN }}