We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 419e194 commit d7b26d3Copy full SHA for d7b26d3
.github/workflows/on_release_created.yml …kflows/on_release_created_or_updated.yml.github/workflows/on_release_created.yml renamed to .github/workflows/on_release_created_or_updated.yml
@@ -3,10 +3,10 @@ name: Release Published
3
on:
4
workflow_dispatch:
5
release:
6
- types: [ created, edited ]
+ types: [ created, edited, published ]
7
8
jobs:
9
- build_and_publish_jar:
+ build_and_publish:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
@@ -24,10 +24,4 @@ jobs:
24
GPG_SIGNING_PASSWORD: ${{ secrets.GPG_SIGNING_PASSWORD }}
25
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
26
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
+ ./gradlew publish
0 commit comments