From 54cd4e7de499c0adc2453f705f5dd9a54c84cf94 Mon Sep 17 00:00:00 2001 From: surendrajat Date: Mon, 27 May 2024 15:00:12 +0530 Subject: [PATCH] ci: upload artifacts if it's not a release --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3e7b01..9ec53cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,12 @@ jobs: sha256sum out_dir/$FILE xz -z out_dir/$FILE + - uses: actions/upload-artifact@v4 + if: ${{ ! startsWith(github.ref, 'refs/tags/') }} + with: + name: frida-gadget + path: out_dir/*.xz + - name: Create Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/')