Skip to content

Commit 720dfd9

Browse files
authored
workflows: Fix missing GITHUB_TOKEN in release-doxygen.yml upload step (#91091)
We were accidentally setting the GITHUB_TOKEN environment variable in the previous step.
1 parent 0d31ac8 commit 720dfd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-doxygen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656
pip3 install --user -r ./llvm/docs/requirements.txt
5757
5858
- name: Build Doxygen
59-
env:
60-
GITHUB_TOKEN: ${{ github.token }}
6159
run: |
6260
./llvm/utils/release/build-docs.sh -release "${{ inputs.release-version }}" -no-sphinx
6361
6462
- name: Upload Doxygen
6563
if: env.upload
64+
env:
65+
GITHUB_TOKEN: ${{ github.token }}
6666
run: |
6767
./llvm/utils/release/github-upload-release.py --token "$GITHUB_TOKEN" --release "${{ inputs.release-version }}" --user "${{ github.actor }}" upload --files ./*doxygen*.tar.xz

0 commit comments

Comments
 (0)