diff options
| author | SulfurNitride <SulfurNitride@users.noreply.github.com> | 2026-03-11 07:26:44 -0500 |
|---|---|---|
| committer | SulfurNitride <SulfurNitride@users.noreply.github.com> | 2026-03-11 07:26:44 -0500 |
| commit | 7235a616426d55502aac33de68fca68e715ce18d (patch) | |
| tree | 615b58559642686c522541ced0b1bcc74dba591a /.github | |
| parent | 03fc1da756d26944d66cff8997d712521b1fde2c (diff) | |
Fix CI: upload build directory instead of removed tar.gz
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0212a31..d452767 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,25 +62,10 @@ jobs: fluorine-builder:latest \ bash /src/docker/build-inner.sh - - name: Collect artifacts - run: | - mkdir -p artifact - if [ -f build/fluorine-manager.tar.gz ]; then - cp build/fluorine-manager.tar.gz artifact/ - fi - ls -lh artifact/ - - - name: Upload tarball + - name: Upload build uses: actions/upload-artifact@v4 with: name: Fluorine-Manager - path: artifact/fluorine-manager.tar.gz - compression-level: 0 + path: build/fluorine-manager/ + compression-level: 6 if-no-files-found: warn - - - name: Create GitHub Release - if: startsWith(github.ref, 'refs/tags/v') - uses: softprops/action-gh-release@v2 - with: - files: artifact/fluorine-manager.tar.gz - generate_release_notes: true |
