build: remove if check, upload artifact
Build / build (push) Failing after 3m33s

This commit is contained in:
2026-03-20 22:49:54 -03:00
parent 91b4f33ca1
commit 6d4fab7d9f
+7 -2
View File
@@ -73,8 +73,7 @@ jobs:
- name: Build Unlocker
run: cmake --build build --target dbd-unlocker
- name: Package Release
if: startsWith(github.ref, 'refs/tags/')
- name: Package Build
run: |
EXE=$(find build -name "*.exe" | head -1)
mkdir -p release
@@ -82,6 +81,12 @@ jobs:
cp res/*.json release/
cd release && zip -j ../unlocker.zip *
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: unlocker-build
path: unlocker.zip
- name: Create Gitea Release
if: startsWith(github.ref, 'refs/tags/')
uses: akkuman/gitea-release-action@v1