There was an error while loading. Please reload this page.
1 parent 7535bc8 commit e563854Copy full SHA for e563854
1 file changed
.github/workflows/release.yml
@@ -30,9 +30,18 @@ jobs:
30
env:
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
33
+ - uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2
34
+ id: app-token
35
+ with:
36
+ app-id: ${{ secrets.BUMP_APP_ID }}
37
+ private-key: ${{ secrets.BUMP_APP_PRIVATE_KEY }}
38
+ owner: built-fast
39
+ repositories: homebrew-devtools
40
+ permission-actions: write
41
+
42
- name: Update Homebrew formula
43
- GH_TOKEN: ${{ secrets.GH_TOKEN }}
44
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
45
run: |
46
gh workflow run bump-formula.yml \
47
-f version="${GITHUB_REF_NAME}" \
0 commit comments