From 384928ed6c58b0a8c2a4c6ff3f42e7a7a28eb9f0 Mon Sep 17 00:00:00 2001 From: Mike the Tike Date: Mon, 23 May 2022 08:55:35 +0200 Subject: [PATCH] ci(libwallet): add outputs on release (#4123) Test adding artifacts to releases of libwallet --- .github/workflows/libwallet.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/libwallet.yml b/.github/workflows/libwallet.yml index 486becf59c..61b0d363a4 100644 --- a/.github/workflows/libwallet.yml +++ b/.github/workflows/libwallet.yml @@ -94,14 +94,15 @@ jobs: create-release: runs-on: ubuntu-latest needs: [android, ios] - if: ${{ startsWith(github.ref, 'refs/tags/libwallet') }} + # todo: put this back, just testing the release +# if: ${{ startsWith(github.ref, 'refs/tags/libwallet') }} steps: - name: Download binaries uses: actions/download-artifact@v2 - name: Create release uses: ncipollo/release-action@v1 with: - artifacts: "libwallet*" + artifacts: "libwallet*/**/*" token: ${{ secrets.GITHUB_TOKEN }} prerelease: true draft: true