mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
26 lines
612 B
YAML
26 lines
612 B
YAML
name: build-dev
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev ]
|
|
paths-ignore:
|
|
# Do not run the pipeline if only Markdown files changed
|
|
- '**.md'
|
|
jobs:
|
|
test:
|
|
uses: ./.github/workflows/test.yaml
|
|
with:
|
|
release: "v2.0.${{ github.run_number }}"
|
|
client: test
|
|
|
|
# publish-dev-image:
|
|
# uses: ./.github/workflows/build-image.yaml
|
|
# needs: test
|
|
# with:
|
|
# client: "image-dev"
|
|
# image_name: "quay.io/${{ github.repository_owner }}/kubescape"
|
|
# image_tag: "dev-v2.0.${{ github.run_number }}"
|
|
# support_platforms: true
|
|
# cosign: true
|
|
# secrets: inherit
|