Skip to content

Commit 01d1db8

Browse files
committed
fix: add github-token to GitHub release step in daily-benchmark.yml
- Included `github-token: ${{ secrets.PAT_TOKEN }}` in the release creation step to ensure proper authentication for GitHub actions. - This change enhances the security and functionality of the release process by using a personal access token for better permissions management.
1 parent 7fffd08 commit 01d1db8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/daily-benchmark.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ jobs:
254254
- name: Create or update GitHub release
255255
uses: actions/github-script@v7
256256
with:
257+
github-token: ${{ secrets.PAT_TOKEN }}
257258
script: |
258259
const fs = require('fs');
259260
const tagName = '${{ needs.analysis.outputs.tag-name }}';

0 commit comments

Comments
 (0)