Skip to content

Commit a9b6cfd

Browse files
wax911Copilot
andcommitted
fix: update GitHub Actions to use client-id instead of app-id for token creation
Co-authored-by: Copilot <copilot@github.com>
1 parent 9a3322f commit a9b6cfd

4 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/android-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/create-github-app-token@v3
5151
id: app-token
5252
with:
53-
app-id: ${{ secrets.APP_ID }}
53+
client-id: ${{ secrets.APP_ID }}
5454
private-key: ${{ secrets.APP_PRIVATE_KEY }}
5555
- name: Checkout repository
5656
uses: actions/checkout@v6
@@ -75,7 +75,7 @@ jobs:
7575
- uses: actions/create-github-app-token@v3
7676
id: app-token
7777
with:
78-
app-id: ${{ secrets.APP_ID }}
78+
client-id: ${{ secrets.APP_ID }}
7979
private-key: ${{ secrets.APP_PRIVATE_KEY }}
8080
- name: Checkout repository
8181
uses: actions/checkout@v6
@@ -115,4 +115,4 @@ jobs:
115115
uses: actions/upload-artifact@v7
116116
with:
117117
name: publications
118-
path: ~/.m2/repository/io/wax911/emoji/
118+
path: ~/.m2/repository/io/wax911/emoji/

.github/workflows/python-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/create-github-app-token@v3
2424
id: app-token
2525
with:
26-
app-id: ${{ secrets.APP_ID }}
26+
client-id: ${{ secrets.APP_ID }}
2727
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2828
- name: Checkout repository
2929
uses: actions/checkout@v6

.github/workflows/release-drafter.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ jobs:
1818
- uses: actions/create-github-app-token@v3
1919
id: app-token
2020
with:
21-
app-id: ${{ secrets.APP_ID }}
21+
client-id: ${{ secrets.APP_ID }}
2222
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2323
- uses: release-drafter/release-drafter@v7
2424
id: release_drafter
2525
with:
2626
config-name: release-drafter-config.yml
2727
commitish: develop
28-
env:
29-
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
28+
token: ${{ steps.app-token.outputs.token }}
3029
- name: Repository Dispatch
3130
uses: peter-evans/repository-dispatch@v4
3231
with:

jitpack.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ jdk:
22
- openjdk21
33
install:
44
- echo "Running clean, build, publishMavenPublicationToMavenLocal commands"
5-
- ./gradlew clean build
6-
- ./gradlew publishMavenPublicationToMavenLocal
5+
- ./gradlew build publishMavenPublicationToMavenLocal --stacktrace
76
env:
87
CI: "true"

0 commit comments

Comments
 (0)