2021-05-21 07:41:45 -03:00
|
|
|
# gh secret set
|
|
|
|
|
2023-07-16 19:23:40 +02:00
|
|
|
> Create or update GitHub secrets.
|
2021-05-21 07:41:45 -03:00
|
|
|
> More information: <https://cli.github.com/manual/gh_secret_set>.
|
|
|
|
|
|
|
|
- Set a secret for the current repository (user will be prompted for the value):
|
|
|
|
|
|
|
|
`gh secret set {{name}}`
|
|
|
|
|
|
|
|
- Set a secret from a file for the current repository:
|
|
|
|
|
|
|
|
`gh secret set {{name}} < {{path/to/file}}`
|
|
|
|
|
|
|
|
- Set a secret for a specific repository:
|
|
|
|
|
2025-05-03 05:57:05 +03:00
|
|
|
`gh secret set {{name}} {{[-b|--body]}} {{value}} {{[-R|--repo]}} {{owner}}/{{repository}}`
|
2021-05-21 07:41:45 -03:00
|
|
|
|
|
|
|
- Set an organization secret for specific repositories:
|
|
|
|
|
2025-05-03 05:57:05 +03:00
|
|
|
`gh secret set {{name}} {{[-o|--org]}} {{organization}} {{[-r|--repos]}} "{{repository1,repository2,...}}"`
|
2021-05-21 07:41:45 -03:00
|
|
|
|
|
|
|
- Set an organization secret with a specific visibility:
|
|
|
|
|
2025-05-03 05:57:05 +03:00
|
|
|
`gh secret set {{name}} {{[-o|--org]}} {{organization}} {{[-v|--visibility]}} {{all|private|selected}}`
|