CI: Try again upload
Build Packages / Build (push) Failing after 39s

This commit is contained in:
2026-04-08 14:46:36 +02:00
parent 11c9b581f2
commit 942e3ae532
+3 -1
View File
@@ -13,6 +13,7 @@ jobs:
runs-on: durin
steps:
- uses: actions/checkout@v4
- name: Build library
shell: bash
run: |
@@ -20,6 +21,7 @@ jobs:
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j
- name: Upload release asset to Gitea
if: github.ref_type == 'tag'
shell: bash
@@ -74,6 +76,6 @@ jobs:
curl -fsS \
-X POST \
-H "Authorization: token ${GITEA_TOKEN}" \
-F "attachment=@${file}" \
-F "name=${asset_name}" \
-F "attachment=@${file};filename=${asset_name};type=application/octet-stream" \
"${api}/releases/${release_id}/assets"