We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the Build step of https://github.com/aquasecurity/tracee/blob/main/.github/workflows/release.yaml and https://github.com/aquasecurity/tracee/blob/main/.github/workflows/release-snapshot.yaml comprises the github release creation even if the next steps fail. The architecture build steps should take care only of that leaving the release (last step) responsible of pushing images and finally creating the github release.
upload-artifact
download-artifact
if: failure()
The text was updated successfully, but these errors were encountered:
A webhook for status is being arranged so we will be able to get failures/successes in the box for release-snapshot and btfhub cron jobs.
Sorry, something went wrong.
geyslan
No branches or pull requests
Description
Currently, the Build step of https://github.com/aquasecurity/tracee/blob/main/.github/workflows/release.yaml and https://github.com/aquasecurity/tracee/blob/main/.github/workflows/release-snapshot.yaml comprises the github release creation even if the next steps fail. The architecture build steps should take care only of that leaving the release (last step) responsible of pushing images and finally creating the github release.
upload-artifact
anddownload-artifact
actions to share the docker images through the workflow jobs.if: failure()
to rollback (clean) possible done steps.The text was updated successfully, but these errors were encountered: