-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): fix publish workflow permissions (#21773)
* ci(github-actions): fix publish workflow permissions Signed-off-by: Bryce Thuilot <[email protected]> * ci(github-actions): fix trailing space Signed-off-by: Bryce Thuilot <[email protected]> * ci(github-actions): update custom builds Signed-off-by: Bryce Thuilot <[email protected]> * Adding permissions to additional workflows that call this publish Signed-off-by: Jesse Szwedko <[email protected]> --------- Signed-off-by: Bryce Thuilot <[email protected]> Signed-off-by: Jesse Szwedko <[email protected]> Co-authored-by: Jesse Szwedko <[email protected]>
- Loading branch information
Showing
4 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: Custom Builds | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
on: | ||
workflow_dispatch: {} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: Nightly | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: Publish | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
name: Release Suite | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
on: | ||
push: | ||
tags: | ||
|