Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
run: make -j build/image/envbox

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@8bd2f9fbda2109502356ff8a6a89da55b1ead252
uses: aquasecurity/trivy-action@0.29.0
with:
image-ref: envbox:latest
format: sarif
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,11 @@ jobs:
run: |
git tag -a ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }}
git push --tags
- name: Create Release
run: |
version=${{ github.event.inputs.version }}
if [[ $version == *-rc* ]]; then
gh release create "$version" -t "$version" --generate-notes --prerelease --latest=false --verify-tag
else
gh release create $version -t $version --generate-notes --verify-tag
fi
Loading