File tree 2 files changed +9
-1
lines changed 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ jobs:
190
190
run : make -j build/image/envbox
191
191
192
192
- name : Run Trivy vulnerability scanner
193
- uses : aquasecurity/trivy-action@8bd2f9fbda2109502356ff8a6a89da55b1ead252
193
+ uses : aquasecurity/trivy-action@0.29.0
194
194
with :
195
195
image-ref : envbox:latest
196
196
format : sarif
Original file line number Diff line number Diff line change @@ -124,3 +124,11 @@ jobs:
124
124
run : |
125
125
git tag -a ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }}
126
126
git push --tags
127
+ - name : Create Release
128
+ run : |
129
+ version=${{ github.event.inputs.version }}
130
+ if [[ $version == *-rc* ]]; then
131
+ gh release create "$version" -t "$version" --generate-notes --prerelease --latest=false --verify-tag
132
+ else
133
+ gh release create $version -t $version --generate-notes --verify-tag
134
+ fi
You can’t perform that action at this time.
0 commit comments