Skip to content

Commit

Permalink
Merge pull request #123 from fingerprintjs/chore/fix-release-action
Browse files Browse the repository at this point in the history
ci: use correct APP_ID in release
  • Loading branch information
TheUnderScorer authored Sep 10, 2024
2 parents 632a0a9 + 8cb1a66 commit f5f9d28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c
id: app-token
with:
app-id: ${{ vars.appId }}
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
release:
needs: [get-token]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
environment: production
steps:
- name: 'Get token for the GitHub App'
if: ${{ vars.appId != '' }}
if: ${{ vars.APP_ID != '' }}
uses: actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c
id: app-token
with:
app-id: ${{ vars.appId }}
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- uses: actions/checkout@v4
Expand Down

0 comments on commit f5f9d28

Please sign in to comment.