File tree Expand file tree Collapse file tree 2 files changed +28
-9
lines changed Expand file tree Collapse file tree 2 files changed +28
-9
lines changed Original file line number Diff line number Diff line change @@ -446,3 +446,24 @@ jobs:
446
446
commit -m "NGINX Ingress Controller - Release ${{ needs.checks.outputs.chart_version }}"
447
447
git push -u origin master
448
448
if : github.ref_type == 'tag'
449
+
450
+ operator :
451
+ name : Trigger PR for Operator
452
+ runs-on : ubuntu-22.04
453
+ needs : [checks, publish-helm]
454
+ steps :
455
+ - name :
456
+ uses : actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
457
+ with :
458
+ github-token : ${{ secrets.NGINX_PAT }}
459
+ script : |
460
+ await github.rest.actions.createWorkflowDispatch({
461
+ owner: context.repo.owner,
462
+ repo: 'nginx-ingress-helm-operator',
463
+ workflow_id: 'sync-chart.yml',
464
+ ref: 'main',
465
+ inputs: {
466
+ chart_version: '${{ needs.checks.outputs.chart_version }}'
467
+ },
468
+ })
469
+ if : github.ref_type == 'tag'
Original file line number Diff line number Diff line change @@ -97,28 +97,26 @@ changelog:
97
97
skip : true
98
98
99
99
archives :
100
- - id : kubernetes-ingress
100
+ - id : archives
101
101
builds : [kubernetes-ingress]
102
102
103
103
sboms :
104
- - artifacts : archive
105
- ids : [kubernetes-ingress]
104
+ - id : sboms
105
+ artifacts : archive
106
+ ids : [archives]
106
107
documents :
107
108
- " ${artifact}.spdx.json"
108
109
109
110
release :
110
- ids : [kubernetes-ingress]
111
- extra_files :
112
- - glob : ./dist/**.spdx.json
111
+ ids : [archives, sboms, signs]
113
112
114
113
blobs :
115
114
- provider : azblob
116
115
bucket : ' {{.Env.AZURE_BUCKET_NAME}}'
117
- extra_files :
118
- - glob : ./dist/**.spdx.json
119
116
120
117
signs :
121
- - cmd : cosign
118
+ - id : signs
119
+ cmd : cosign
122
120
artifacts : checksum
123
121
output : true
124
122
certificate : ' ${artifact}.pem'
You can’t perform that action at this time.
0 commit comments