diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95bf071..fda63fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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