guitea build
Some checks failed
Build / Build - linux (push) Failing after 6m33s

This commit is contained in:
2025-12-10 22:53:02 +01:00
parent cb4e12fe86
commit 5681a74985

View File

@@ -70,10 +70,15 @@ jobs:
fi fi
- name: Prepare artifact - name: Prepare artifact
shell: bash # ⚠️ Change the shell from 'bash' to 'sh'
shell: sh
run: | run: |
mkdir -p dist mkdir -p dist
cp target/${{ matrix.target }}/release/rlogg${{ matrix.binary_extension }} dist/${{ matrix.artifact_name }}${{ matrix.binary_extension }} if [ "${{ matrix.platform }}" = "linux" ]; then
cp target/release/rlogg${{ matrix.binary_extension }} dist/${{ matrix.artifact_name }}${{ matrix.binary_extension }}
else
cp target/${{ matrix.target }}/release/rlogg${{ matrix.binary_extension }} dist/${{ matrix.artifact_name }}${{ matrix.binary_extension }}
fi
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4