Skip to content

Commit d7b26d3

Browse files
authored
[HOTFIX] Removed unused print action (#163)
* Removed unused print action * Changed publish action job name
1 parent 419e194 commit d7b26d3

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/on_release_created.yml renamed to .github/workflows/on_release_created_or_updated.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Release Published
33
on:
44
workflow_dispatch:
55
release:
6-
types: [ created, edited ]
6+
types: [ created, edited, published ]
77

88
jobs:
9-
build_and_publish_jar:
9+
build_and_publish:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
@@ -24,10 +24,4 @@ jobs:
2424
GPG_SIGNING_PASSWORD: ${{ secrets.GPG_SIGNING_PASSWORD }}
2525
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
2626
run: |
27-
./gradlew clean publish
28-
29-
- name: Print test results
30-
if: success() || failure()
31-
run: |
32-
echo "\n\n*** Wallet SDK test report ***\n"
33-
cat /home/runner/work/kotlin-wallet-sdk/kotlin-wallet-sdk/wallet-sdk/build/reports/tests/test/index.html
27+
./gradlew publish

0 commit comments

Comments
 (0)