bump cloudtrail for local repo #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Plugins | ||
on: | ||
push: | ||
tags: | ||
# All tags | ||
- '**' | ||
# Checks if any concurrent jobs is running for release CI and eventually cancel it. | ||
concurrency: | ||
group: ci-release-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
extract-info: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
package: ${{ steps.regex-match.outputs.group1 }} | ||
steps: | ||
- name: Extract semver ℹ️ | ||
uses: actions-ecosystem/action-regex-match@v2 | ||
id: regex-match | ||
with: | ||
text: ${{ github.ref_name }} | ||
regex: '^([a-z]+[a-z0-9_\-]*)-(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-((0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?$' | ||
- name: Fail on non semver tag | ||
if: steps.regex-match.outputs.match == '' | ||
run: exit 1 | ||
build-plugins: | ||
needs: extract-info | ||
uses: falcosecurity/plugins/.github/workflows/reusable_build_packages.yaml@master | ||
with: | ||
makecommand: make release/${{ needs.extract-info.outputs.package }} -j4 | ||
suffix: stable | ||
secrets: inherit | ||
build-rules-tool: | ||
needs: [extract-info] | ||
uses: ./.github/workflows/reusable_build_rules_tool.yaml | ||
with: | ||
output: rules-checker | ||
repository: falcosecurity/rules | ||
validate-plugins: | ||
needs: [extract-info, build-plugins, build-rules-tool] | ||
uses: ./.github/workflows/reusable_validate_plugins.yaml | ||
with: | ||
plugin: ${{ needs.extract-info.outputs.package }} | ||
falcoctl-version: 0.6.2 | ||
falco-image: falcosecurity/falco-no-driver:0.36.2 | ||
plugins-artifact: plugins-x86_64-stable.tar.gz | ||
rules-checker: ./rules-checker | ||
arch: x86_64 | ||
publish-plugins: | ||
Check failure on line 58 in .github/workflows/release.yml GitHub Actions / Release PluginsInvalid workflow file
|
||
needs: [build-plugins, validate-plugins] | ||
uses: falcosecurity/plugins/.github/workflows/reusable_publish_packages.yaml@master | ||
with: | ||
suffix: stable | ||
secrets: inherit |