Skip to content

Commit

Permalink
[HOTFIX] Removed unused print action (#163)
Browse files Browse the repository at this point in the history
* Removed unused print action
* Changed publish action job name
  • Loading branch information
lijamie98 authored Dec 19, 2024
1 parent 419e194 commit d7b26d3
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Release Published
on:
workflow_dispatch:
release:
types: [ created, edited ]
types: [ created, edited, published ]

jobs:
build_and_publish_jar:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -24,10 +24,4 @@ jobs:
GPG_SIGNING_PASSWORD: ${{ secrets.GPG_SIGNING_PASSWORD }}
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
run: |
./gradlew clean publish
- name: Print test results
if: success() || failure()
run: |
echo "\n\n*** Wallet SDK test report ***\n"
cat /home/runner/work/kotlin-wallet-sdk/kotlin-wallet-sdk/wallet-sdk/build/reports/tests/test/index.html
./gradlew publish

0 comments on commit d7b26d3

Please sign in to comment.