File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change 20
20
- name : Checkout code
21
21
uses : actions/checkout@v4.2.2
22
22
23
- # Step 2: Debug: Verify api_stats.sh and repository content
24
23
- name : List repository files
25
24
run : ls -R .; pwd
26
25
- name : Set up Docker Buildx
43
42
ghcr.io/nginx/nginx-utils:${{ env.RELEASE_VERSION }}
44
43
ghcr.io/nginx/nginx-utils:latest
45
44
46
-
47
- # Step 5: Install Trivy for Vulnerability Scanning
48
45
- name : Install Trivy and scan image for vulnerabilities
49
46
uses : aquasecurity/trivy-action@0.31.0
50
47
58
55
with :
59
56
name : vuln-report
60
57
path : vuln-report.json
58
+
59
+ - name : Update Release Notes with Docker Image Info
60
+ uses : softprops/action-gh-release@v2.3.2
61
+ with :
62
+ tag_name : ${{ github.event.release.tag_name }}
63
+ body : |
64
+ ## Docker Image
65
+ The Docker image for this release can be pulled using:
66
+
67
+ ```
68
+ docker pull ghcr.io/${{ github.repository_owner }}/nginx-utils:${{ github.event.release.tag_name }}
69
+ ```
70
+
71
+ Or use the `latest` tag:
72
+
73
+ ```
74
+ docker pull ghcr.io/${{ github.repository_owner }}/nginx-utils:latest
75
+ ```
You can’t perform that action at this time.
0 commit comments