You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+44Lines changed: 44 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,3 +115,47 @@ build:
115
115
build_secrets: |
116
116
MY_SECRET=${{ secrets.MY_SECRET }}
117
117
```
118
+
119
+
---
120
+
121
+
### `gitops-deploy.yml` — GitOps Deploy
122
+
123
+
Updates an image tag in a GitOps repository (e.g. an ArgoCD application YAML) and commits the change. Matches the tag line using a [Renovate](https://docs.renovatebot.com/) `datasource=docker depName=` annotation comment. Supports GitHub App auth or a PAT.
124
+
125
+
#### Secrets
126
+
127
+
| Name | Description |
128
+
|------|-------------|
129
+
| `APP_ID` | GitHub App client ID (use with `APP_PRIVATE_KEY`) |
130
+
| `APP_PRIVATE_KEY` | GitHub App private key |
131
+
| `RELEASE_TOKEN` | PAT alternative to App auth |
132
+
133
+
Either `RELEASE_TOKEN` or both App secrets must be set. The app or PAT must have write access to the gitops repository.
0 commit comments