Skip to content

Commit

Permalink
ci(libwallet): add outputs on release (#4123)
Browse files Browse the repository at this point in the history
Test adding artifacts to releases of libwallet
  • Loading branch information
stringhandler authored May 23, 2022
1 parent 5ae141a commit 384928e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/libwallet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 384928e

Please sign in to comment.