Skip to content

Commit 281a3b3

Browse files
committed
ci: Fix Slack release notification
1 parent 6c8bd1c commit 281a3b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Send to Slack channels
4444
uses: slackapi/slack-github-action@79ad3a9d89410e5b0d961a0e7422f18c62c81bfb
4545
with:
46-
webhook: ${{ secrets[matrix.url]}}
46+
webhook: ${{ secrets[matrix.url] }}
4747
webhook-type: incoming-webhook
4848
errors: true
4949
payload: |
@@ -56,9 +56,8 @@ jobs:
5656
text:
5757
type: "mrkdwn"
5858
text: "${{ github.event.release.body }}"
59-
emoji: true
6059
- type: "divider"
6160
- type: "section"
6261
text:
6362
type: "mrkdwn"
64-
text: "View the full change log <${{github.event.release.html_url }}|here>."
63+
text: "View the full change log <${{ github.event.release.html_url }}|here>."

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
[![Pulse](https://img.shields.io/github/commit-activity/m/vonage/vonage-java-sdk)](https://github.com/vonage/vonage-java-sdk/pulse)
1414

1515
<img src="https://developer.nexmo.com/assets/images/Vonage_Nexmo.svg" height="48px" alt="Nexmo is now known as Vonage" />
16+
<!--img src="https://developer.nexmo.com/images/logos/vbc-logo.svg" height="48px" alt="Vonage" /-->
1617

1718
This Java SDK allows you to use [Vonage APIs](https://developer.vonage.com/api) in any JVM-based application.
1819
You'll need to have [created a Vonage account](https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL&utm_medium=github&utm_campaign=java-client-library).

src/test/java/com/vonage/client/VonageClientTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public void testApplicationIdWithCertPath() {
198198
public void testApplicationIdWithCertPathAsString() {
199199
VonageClient vonageClient = VonageClient.builder()
200200
.applicationId(APPLICATION_ID)
201-
.privateKeyPath(privateKeyPath)
201+
.privateKeyPath(privateKeyPath.toString())
202202
.build();
203203
AuthCollection authCollection = vonageClient.httpWrapper.getAuthCollection();
204204
assertTrue(authCollection.hasAuthMethod(JWTAuthMethod.class));

0 commit comments

Comments
 (0)