chore(plugins): bump versions #89
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: Validate tag ℹ️ | |
uses: actions-ecosystem/action-regex-match@v2 | |
id: regex-match | |
with: | |
text: ${{ github.ref_name }} | |
regex: '^plugins\/([a-z0-9_-]+)\/v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$' | |
- name: Fail on invalid tag | |
if: steps.regex-match.outputs.match == '' | |
run: exit 1 | |
build-plugins: | |
needs: extract-info | |
uses: falcosecurity/plugins/.github/workflows/reusable_build_packages.yaml@main | |
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.7.3 | |
falco-image: falcosecurity/falco-no-driver:0.37.1 | |
plugins-artifact: plugins-x86_64-stable.tar.gz | |
rules-checker: ./rules-checker | |
arch: x86_64 | |
publish-plugins: | |
needs: [build-plugins, validate-plugins] | |
uses: falcosecurity/plugins/.github/workflows/reusable_publish_packages.yaml@main | |
with: | |
suffix: stable | |
secrets: inherit | |
publish-oci-artifacts: | |
needs: [ build-plugins, validate-plugins ] | |
uses: ./.github/workflows/reusable-publish-oci-artifacts.yaml | |
with: | |
suffix: stable | |
secrets: inherit |