We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b0c457 commit a79fbfeCopy full SHA for a79fbfe
1 file changed
.github/workflows/publish-package.yml
@@ -39,10 +39,17 @@ jobs:
39
packages: write
40
41
steps:
42
+ - name: Generate app token
43
+ id: app-token
44
+ uses: actions/create-github-app-token@v1
45
+ with:
46
+ app-id: ${{ secrets.PR_BYPASSER_APP_ID }}
47
+ private-key: ${{ secrets.PR_BYPASSER_PRIVATE_KEY }}
48
+
49
- name: "Checkout files"
50
uses: actions/checkout@v3
51
with:
- token: ${{ secrets.ALCHEMY_BOT_PAT }}
52
+ token: ${{ steps.app-token.outputs.token }}
53
fetch-depth: "0"
54
submodules: "recursive"
55
0 commit comments