Skip to content

Commit 5a1aa26

Browse files
fix(release-please)!: fix version and secrets names (#19)
1 parent fa60b18 commit 5a1aa26

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release-please.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Release Please
33
on:
44
workflow_call:
55
secrets:
6-
application-id:
6+
RELEASE_PLEASE_APPLICATION_ID:
77
required: true
8-
private-key:
8+
RELEASE_PLEASE_PRIVATE_KEY:
99
required: true
1010

1111
permissions:
@@ -18,10 +18,10 @@ jobs:
1818
steps:
1919
- name: Get Token
2020
id: get_token
21-
uses: peter-murray/workflow-application-token-action@v3
21+
uses: peter-murray/workflow-application-token-action@v4
2222
with:
23-
application_id: "${{ secrets.release-please-application-id }}"
24-
application_private_key: ${{ secrets.release-please-private-key }}
23+
application_id: "${{ secrets.RELEASE_PLEASE_APPLICATION_ID }}"
24+
application_private_key: ${{ secrets.RELEASE_PLEASE_PRIVATE_KEY }}
2525
organization: ${{ github.repository_owner }}
2626
- name: Run release-please
2727
uses: googleapis/release-please-action@v4

0 commit comments

Comments
 (0)