Skip to content

Commit

Permalink
[CI] Fix permissions on nightly releases (intel#13406)
Browse files Browse the repository at this point in the history
Nightly packages haven't been published in a while and looking at the
logs the job failed with 403.

The `softprops/action-gh-release` documentation says it needs `contents:
write` permissions, which makes sense as it's creating a tag.
  • Loading branch information
npmiller authored Apr 16, 2024
1 parent f170c63 commit 0e004f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ jobs:
if: ${{ github.ref_name == 'sycl' }}
needs: [ubuntu2204_build, build-win]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 0e004f9

Please sign in to comment.